summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-10-16 07:53:44 -0400
committerNed Batchelder <ned@nedbatchelder.com>2017-10-16 08:45:17 -0400
commit1b241b06b2d9badf1f4021150fef39ada7601b63 (patch)
tree09e5ba7345008a617b9505fe67ea463233b04414
parent259b1e6a5377b1d38c5b1916dd7812dd346cb30a (diff)
downloadpython-coveragepy-git-1b241b06b2d9badf1f4021150fef39ada7601b63.tar.gz
Don't need a temp directory for these tests
-rw-r--r--tests/test_intern_table.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_intern_table.py b/tests/test_intern_table.py
index 080a0ba4..6e438782 100644
--- a/tests/test_intern_table.py
+++ b/tests/test_intern_table.py
@@ -14,6 +14,9 @@ if env.C_TRACER:
@pytest.mark.skipif(not env.C_TRACER, reason="Only the C tracer has refcounting issues")
class TestInternTable(CoverageTest):
+
+ run_in_temp_dir = False
+
@example([0])
@given(st.lists(st.integers(0, 2 ** 64 - 1), unique=True))
def test_interns_as_none_by_default(self, ls):