From: Tomas Babej Date: Tue, 17 Mar 2015 22:22:46 +0000 (+0100) Subject: tests: Use non-existent taskrc with tests X-Git-Url: https://git.madduck.net/etc/taskwarrior.git/commitdiff_plain/cab464210313ffae041b1004c623e32c41cc8ffd tests: Use non-existent taskrc with tests --- diff --git a/tasklib/tests.py b/tasklib/tests.py index c982a39..b40203f 100644 --- a/tasklib/tests.py +++ b/tasklib/tests.py @@ -40,7 +40,7 @@ class TasklibTest(unittest.TestCase): def setUp(self): self.tmp = tempfile.mkdtemp(dir='.') - self.tw = TaskWarrior(data_location=self.tmp) + self.tw = TaskWarrior(data_location=self.tmp, taskrc_location='/') def tearDown(self): shutil.rmtree(self.tmp)