summaryrefslogtreecommitdiff
path: root/tests/test_process.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-05-05 08:49:01 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-05-05 08:49:01 -0400
commit97e71354ab82ca573df2dd90c60c510aab6b663d (patch)
treeea91344f1567e48f786bc347f78c5bb0323fa16b /tests/test_process.py
parent0ad9ce7affb80fc7716d5de8df38b246282ea55c (diff)
downloadpython-coveragepy-97e71354ab82ca573df2dd90c60c510aab6b663d.tar.gz
No more support for 2.6 or 3.3
Diffstat (limited to 'tests/test_process.py')
-rw-r--r--tests/test_process.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test_process.py b/tests/test_process.py
index fb08562..f0b1cde 100644
--- a/tests/test_process.py
+++ b/tests/test_process.py
@@ -727,10 +727,6 @@ class ProcessTest(CoverageTest):
)
def test_module_name(self):
- if sys.version_info < (2, 7):
- # Python 2.6 thinks that coverage is a package that can't be
- # executed
- self.skipTest("-m doesn't work the same < Python 2.7")
# https://bitbucket.org/ned/coveragepy/issues/478/help-shows-silly-program-name-when-running
out = self.run_command("python -m coverage")
self.assertIn("Use 'coverage help' for help", out)
@@ -852,10 +848,6 @@ class EnvironmentTest(CoverageTest):
self.assert_tryexecfile_output(out_cov, out_py)
def test_coverage_run_dashm_is_like_python_dashm_with__main__207(self):
- if sys.version_info < (2, 7):
- # Coverage.py isn't bug-for-bug compatible in the behavior
- # of -m for Pythons < 2.7
- self.skipTest("-m doesn't work the same < Python 2.7")
# https://bitbucket.org/ned/coveragepy/issue/207
self.make_file("package/__init__.py", "print('init')")
self.make_file("package/__main__.py", "print('main')")