diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-18 06:34:46 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-18 06:34:46 -0500 |
commit | e6f7c758510279978aad030e0369f34cf666ee3a (patch) | |
tree | 813fffb6f2fb65d494521a56daa8941df17e95bd /test/test_parser.py | |
parent | 4fd78e63c89803d50972df4128f08572bab53581 (diff) | |
download | python-coveragepy-e6f7c758510279978aad030e0369f34cf666ee3a.tar.gz |
Dur! This is a better way to indicate how the tests should run.
Diffstat (limited to 'test/test_parser.py')
-rw-r--r-- | test/test_parser.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_parser.py b/test/test_parser.py index 61572be..3d5726d 100644 --- a/test/test_parser.py +++ b/test/test_parser.py @@ -11,6 +11,8 @@ from coverage.parser import CodeParser class ParserTest(CoverageTest): """Tests for Coverage.py's code parsing.""" + run_in_temp_dir = False + def parse_source(self, text): """Parse `text` as source, and return the `CodeParser` used.""" text = textwrap.dedent(text) |