summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2020-01-23 23:48:01 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2020-01-24 00:05:34 +0530
commit0617a46dc2a2c0e6341fb9e45f7c26abd43bd673 (patch)
tree45639a6d3052551bea48657e65ce20cf5bcb1b83
parent55a5287e658b1fae34a5eafdf735adbc2289da2c (diff)
downloadmeson-nirbheek/fix-typing-compat-python-3.5.2.tar.gz
unit tests: Let's take a look at why the Windows CI is failingnirbheek/fix-typing-compat-python-3.5.2
-rwxr-xr-xrun_unittests.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/run_unittests.py b/run_unittests.py
index 9008f1748..b8f6172a5 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -1376,6 +1376,7 @@ class DataTests(unittest.TestCase):
class BasePlatformTests(unittest.TestCase):
def setUp(self):
super().setUp()
+ self.maxDiff = None
src_root = os.path.dirname(__file__)
src_root = os.path.join(os.getcwd(), src_root)
self.src_root = src_root
@@ -4194,9 +4195,6 @@ recommended as it is not supported on some platforms''')
self.init(testdir)
self._run(self.mconf_command + [self.builddir])
- # FIXME: The test is failing on Windows CI even if the print looks good.
- # Maybe encoding issue?
- @unittest.skipIf(is_windows(), 'This test fails on Windows CI')
def test_summary(self):
testdir = os.path.join(self.unit_test_dir, '72 summary')
out = self.init(testdir)