Commit 769b922f authored by Alexander's avatar Alexander

moved tests in app folder

parent 53192146
print("In test ABC, hello wooorld")
#test = 4/0
\ No newline at end of file
# add modules folder to interpreter path
import sys
import os
modules_paths = ['../app/', '../../../modules/']
modules_paths = ['../', '../../../../modules/']
for path in modules_paths:
if os.path.exists(path):
sys.path.insert(1, path)
print(f"added {path}")
# add modules folder to interpreter path
import sys
import os
modules_paths = ['../app/', '../../modules/']
modules_paths = ['../', '../../../modules/']
for path in modules_paths:
if os.path.exists(path):
sys.path.insert(1, path)
# add modules folder to interpreter path
import sys
import os
modules_paths = ['../app/', '../../../modules/']
modules_paths = ['../', '../../../../modules/']
for path in modules_paths:
if os.path.exists(path):
sys.path.insert(1, path)
print(f"added {path}")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment