diff options
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/run_unittests.py b/run_unittests.py index 9008f17..b8f6172 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) |