aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_cache.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@gmail.com>2020-05-03 00:06:40 -0400
committerLibravatarUnit 193 <unit193@gmail.com>2020-05-03 00:06:40 -0400
commit90e50db2e3c38f523bb5195d295290b06e5cedb0 (patch)
tree4759dc0faea79f83fa5074e2d0bd82b18a9caaea /test/test_cache.py
parentd5b96ce44b7809f5ae01e3e9d70a1d58fe21ccf5 (diff)
New upstream version 1.13.6upstream/1.13.6
Diffstat (limited to 'test/test_cache.py')
-rw-r--r--test/test_cache.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/test/test_cache.py b/test/test_cache.py
index 31ece7e..e19896e 100644
--- a/test/test_cache.py
+++ b/test/test_cache.py
@@ -7,14 +7,19 @@
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
+import os
+import sys
import unittest
-import tempfile
+
import time
+import tempfile
+
+sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
+from gallery_dl import config, util # noqa E402
-from gallery_dl import config, util
dbpath = tempfile.mkstemp()[1]
config.set(("cache",), "file", dbpath)
-from gallery_dl import cache # noqa
+from gallery_dl import cache # noqa E402
def tearDownModule():