jenkins-bot merged this change.

View Change

Approvals: Dvorapa: Looks good to me, approved jenkins-bot: Verified
[tests] Suppress Userwarning about already created sites

Bug: T225594
Change-Id: Ifec58a43bcb61ae5c986720aaa1e694dbfd4d9d7
---
M tests/isbn_tests.py
M tests/reflinks_tests.py
2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/tests/isbn_tests.py b/tests/isbn_tests.py
index 361f40f..fbe0bac 100644
--- a/tests/isbn_tests.py
+++ b/tests/isbn_tests.py
@@ -29,6 +29,7 @@
WikibaseTestCase, ScriptMainTestCase,
)
from tests.bot_tests import TWNBotTestCase
+from tests.utils import empty_sites

if StdNumValidationError:
AnyIsbnValidationException = (StdNumValidationError, IsbnExc)
@@ -209,13 +210,15 @@

def test_isbn_format(self):
"""Test format using the bot and wikibase."""
- main('-page:' + self.test_page_qid, '-always', '-format')
- self.assertEqual(self.setTarget_value, '0-9752298-0-X')
+ with empty_sites():
+ main('-page:' + self.test_page_qid, '-always', '-format')
+ self.assertEqual(self.setTarget_value, '0-9752298-0-X')

def test_isbn_to13(self):
"""Test to13 using the bot and wikibase."""
- main('-page:' + self.test_page_qid, '-always', '-to13')
- self.assertTrue(self.setTarget_value, '978-0975229804')
+ with empty_sites():
+ main('-page:' + self.test_page_qid, '-always', '-to13')
+ self.assertTrue(self.setTarget_value, '978-0975229804')


def setTarget_dummy(self, value):
diff --git a/tests/reflinks_tests.py b/tests/reflinks_tests.py
index ab8c57c..b32fc12 100644
--- a/tests/reflinks_tests.py
+++ b/tests/reflinks_tests.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""Tests for reflinks script."""
#
-# (C) Pywikibot team, 2014-2019
+# (C) Pywikibot team, 2014-2020
#
# Distributed under the terms of the MIT license.
#
@@ -11,6 +11,7 @@

from tests import join_xml_data_path
from tests.aspects import unittest, TestCase, ScriptMainTestCase
+from tests.utils import empty_sites


class TestXMLPageGenerator(TestCase):
@@ -146,7 +147,8 @@
"""Tear down the test by undoing the bot class patch."""
ReferencesRobot.__init__ = self._original_constructor
ReferencesRobot.run = self._original_run
- super(TestReferencesBotConstructor, self).tearDown()
+ with empty_sites():
+ super(TestReferencesBotConstructor, self).tearDown()

def test_xml_simple(self):
"""Test the generator without any narrowing."""

To view, visit change 571706. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: Ifec58a43bcb61ae5c986720aaa1e694dbfd4d9d7
Gerrit-Change-Number: 571706
Gerrit-PatchSet: 1
Gerrit-Owner: Xqt <info@gno.de>
Gerrit-Reviewer: Dvorapa <dvorapa@seznam.cz>
Gerrit-Reviewer: jenkins-bot (75)