diff options
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 97e2f82b..4409c69e 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -506,9 +506,11 @@ class ProcessTest(CoverageTest): self.assertGreater(data.summary()['os.py'], 50) -class AliasedCommandTests(CoverageTest): +class AliasedCommandTest(CoverageTest): """Tests of the version-specific command aliases.""" + run_in_temp_dir = False + def test_major_version_works(self): # "coverage2" works on py2 cmd = "coverage%d" % sys.version_info[0] |