From e039b3c11b14402131ee31df3d6a6546e8e36afd Mon Sep 17 00:00:00 2001 From: Rob Golding Date: Sun, 3 Nov 2013 21:30:47 +0000 Subject: [PATCH] Use current directory for temp dir --- tasklib/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasklib/tests.py b/tasklib/tests.py index 4f127f0..8507f95 100644 --- a/tasklib/tests.py +++ b/tasklib/tests.py @@ -8,7 +8,7 @@ from .task import TaskWarrior class TasklibTest(unittest.TestCase): def setUp(self): - self.tmp = tempfile.mkdtemp() + self.tmp = tempfile.mkdtemp(dir='.') self.tw = TaskWarrior(data_location=self.tmp) def tearDown(self): -- 2.39.2