where areth thou, file ?

This commit is contained in:
svlandeg 2020-02-19 17:09:29 +02:00
parent 9834527f2c
commit 9f1447bf71
1 changed files with 13 additions and 7 deletions

View File

@ -8,20 +8,26 @@ def test_build_dependencies(en_vocab):
libs_ignore_setup = ["fugashi", "natto-py", "pythainlp"]
# check requirements.txt
req_dict = {}
try:
# for CLI usage
root_dir = Path(__file__).parent.parent
req_file = root_dir / "requirements.txt"
req_dict = {}
with req_file.open() as f:
lines = f.readlines()
except FileNotFoundError as e:
# for local usage
root_dir = Path(__file__).parent.parent.parent
req_file = root_dir / "requirements.txt"
req_dict = {}
with req_file.open() as f:
lines = f.readlines()
try:
# for local usage
root_dir = Path(__file__).parent.parent.parent
req_file = root_dir / "requirements.txt"
with req_file.open() as f:
lines = f.readlines()
except FileNotFoundError as e:
# where areth thou ?
root_dir = Path(__file__).parent.parent.parent.parent
req_file = root_dir / "requirements.txt"
with req_file.open() as f:
lines = f.readlines()
for line in lines:
line = line.strip()