diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2013-01-01 16:38:58 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-01-01 16:38:58 -0500 |
commit | 92894b5562af16f482242a387d6bbf216025bf66 (patch) | |
tree | 1bd7aadcb0897d1c95d56401834185756cc790aa /test/test_process.py | |
parent | 72952295770b200e8efcce392bbbb5f60ac7456c (diff) | |
download | python-coveragepy-git-92894b5562af16f482242a387d6bbf216025bf66.tar.gz |
Mark expected-failure tests as such
Diffstat (limited to 'test/test_process.py')
-rw-r--r-- | test/test_process.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_process.py b/test/test_process.py index 428bb5f1..bf22cc9d 100644 --- a/test/test_process.py +++ b/test/test_process.py @@ -331,9 +331,9 @@ class ProcessTest(CoverageTest): out2 = self.run_command("python -m test.try_execfile") self.assertMultiLineEqual(out, out2) - if 0: + if 0: # Expected failure # For https://bitbucket.org/ned/coveragepy/issue/207 - def test_coverage_run_dashm_is_like_python_dashm_with__main__(self): + def test_coverage_run_dashm_is_like_python_dashm_with__main__207(self): self.make_file("package/__init__.py") # empty self.make_file("package/__main__.py", "#\n") # empty out = self.run_command("coverage run -m package") |