summaryrefslogtreecommitdiff
path: root/tests/test_coverage.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-04-24 21:03:25 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-04-24 21:03:25 -0400
commitc3a98ff12933710d751ec28b984edb7936d457d3 (patch)
tree94fae84fa1c2e750966257f02720201180e75e49 /tests/test_coverage.py
parent9a91d457b4b5214aa8b34baadadbe41983359b0d (diff)
downloadpython-coveragepy-c3a98ff12933710d751ec28b984edb7936d457d3.tar.gz
A better way to indicate that a tempdir test isn't making any files.
Diffstat (limited to 'tests/test_coverage.py')
-rw-r--r--tests/test_coverage.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/test_coverage.py b/tests/test_coverage.py
index 35c7c25..3de381f 100644
--- a/tests/test_coverage.py
+++ b/tests/test_coverage.py
@@ -1672,7 +1672,7 @@ class ReportingTest(CoverageTest):
# We don't make any temp files, but we need an empty directory to run the
# tests in.
- run_in_temp_dir = True
+ no_files_in_temp_dir = True
def test_no_data_to_report_on_annotate(self):
# Reporting with no data produces a nice message and no output dir.
@@ -1680,10 +1680,6 @@ class ReportingTest(CoverageTest):
self.command_line("annotate -d ann")
self.assert_doesnt_exist("ann")
- # CoverageTest will yell at us for using a temp directory with no files
- # made. Instead of adding a way to shut it up, just make a file.
- self.make_file("touch.txt", "")
-
def test_no_data_to_report_on_html(self):
# Reporting with no data produces a nice message and no output dir.
with self.assertRaisesRegex(CoverageException, "No data to report."):