mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
skip example config tests if files are not available (#730)
This commit is contained in:
parent
65b1cb7acd
commit
8f2c1da041
@ -14,7 +14,8 @@ import unittest
|
||||
import json
|
||||
import tempfile
|
||||
|
||||
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
||||
ROOTDIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||
sys.path.insert(0, ROOTDIR)
|
||||
from gallery_dl import config # noqa E402
|
||||
|
||||
|
||||
@ -156,10 +157,12 @@ class TestConfigFiles(unittest.TestCase):
|
||||
|
||||
@staticmethod
|
||||
def _load(name):
|
||||
rootdir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||
path = os.path.join(rootdir, "docs", name)
|
||||
with open(path) as fp:
|
||||
return json.load(fp)
|
||||
path = os.path.join(ROOTDIR, "docs", name)
|
||||
try:
|
||||
with open(path) as fp:
|
||||
return json.load(fp)
|
||||
except FileNotFoundError:
|
||||
raise unittest.SkipTest(path + " not available")
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
Loading…
Reference in New Issue
Block a user