From c00a96412f2d8a425fb07b2a23dde76e10554137 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 16 Jan 2017 08:15:25 -0500 Subject: A cleaner way to exclude Jython concerns from meta-coverage. --- tests/test_process.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_process.py') diff --git a/tests/test_process.py b/tests/test_process.py index 6ed566e4..debd0d79 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -891,7 +891,7 @@ class AliasedCommandTest(CoverageTest): def setUp(self): super(AliasedCommandTest, self).setUp() if env.JYTHON: - self.skipTest("Coverage command names don't work on Jython") # pragma: only jython + self.skipTest("Coverage command names don't work on Jython") def test_major_version_works(self): # "coverage2" works on py2 @@ -1095,7 +1095,7 @@ class UnicodeFilePathsTest(CoverageTest): def setUp(self): super(UnicodeFilePathsTest, self).setUp() if env.JYTHON: - self.skipTest("Jython 2 doesn't like accented file names") # pragma: only jython + self.skipTest("Jython 2 doesn't like accented file names") def test_accented_dot_py(self): # Make a file with a non-ascii character in the filename. -- cgit v1.2.1