forked from tqsd/QuNetSim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_test.py
33 lines (25 loc) · 922 Bytes
/
run_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import glob
import os
ignore = []
ignore += [f for f in glob.glob("./tests/integration_test_multi_hop/*.py")]
class cd:
"""Context manager for changing the current working directory"""
def __init__(self, new_path):
self.new_path = os.path.expanduser(new_path)
def __enter__(self):
self.savedPath = os.getcwd()
os.chdir(self.new_path)
def __exit__(self, etype, value, traceback):
os.chdir(self.savedPath)
if __name__ == "__main__":
files = [f for f in glob.glob("./tests/**/*.py")] + [f for f in glob.glob("./tests/*.py")]
print(files)
for f in files:
print("Start with " + str(f))
if f in ignore:
continue
path, filename = os.path.split(f)
with cd(path):
exitcode = os.system("python %s" % filename)
if exitcode != 0:
assert False, "Testfile %s was not successful!" % f