summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2013-10-26 14:41:21 -0400
committerNed Batchelder <ned@nedbatchelder.com>2013-10-26 14:41:21 -0400
commitb13796341e7c0f69b58b093aa4a822fefd03ab1b (patch)
tree67e6d4710ea368b1f9335781d20ebbd0e1cb642d /tests
parent62f4ed9cd969267f4d09a03a07b89144cd511faf (diff)
downloadpython-coveragepy-b13796341e7c0f69b58b093aa4a822fefd03ab1b.tar.gz
Now that this is a CoverageTest, need to shut off the temp dir.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_templite.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_templite.py b/tests/test_templite.py
index a0bd182..e3918e4 100644
--- a/tests/test_templite.py
+++ b/tests/test_templite.py
@@ -21,6 +21,8 @@ class AnyOldObject(object):
class TempliteTest(CoverageTest):
"""Tests for Templite."""
+ run_in_temp_dir = False
+
def try_render(self, text, ctx, result):
"""Render `text` through `ctx`, and it had better be `result`."""
self.assertEqual(Templite(text).render(ctx), result)