forked from ivy-llc/ivy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_tests_pr.py
82 lines (74 loc) · 2.5 KB
/
run_tests_pr.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Run Tests
import os
import sys
import requests
url = "https://ivy-dynamical-dashboards.onrender.com/api/test"
modules = (
"test_paddle",
"test_functional",
"test_experimental",
"test_stateful",
"test_tensorflow",
"test_torch",
"test_jax",
"test_numpy",
"test_misc",
"test_scipy",
)
module_map = {
"test_functional/test_core": "core",
"test_experimental/test_core": "exp_core",
"test_functional/test_nn": "nn",
"test_experimental/test_nn": "exp_nn",
"test_stateful": "stateful",
"test_torch": "torch",
"test_jax": "jax",
"test_tensorflow": "tensorflow",
"test_numpy": "numpy",
"test_misc": "misc",
"test_paddle": "paddle",
"test_scipy": "scipy",
}
def get_mod_submod_test(test_path):
test_path = test_path.split("/")
module = ""
for name in modules:
if name in test_path:
if name == "test_functional":
module = module_map[f"test_functional/{test_path[-2]}"]
elif name == "test_experimental":
module = module_map[f"test_experimental/{test_path[-2]}"]
else:
module = module_map[name]
break
submod_test = test_path[-1]
submod, test_fn = submod_test.split("::")
submod = submod.replace("test_", "").replace(".py", "")
return module, submod, test_fn
if __name__ == "__main__":
failed = False
with open(sys.argv[1], "w") as f_write:
with open("tests_to_run", "r") as f:
for line in f:
test, backend = line.split(",")
print(f"\n{'*' * 100}")
print(f"{line[:-1]}")
print(f"{'*' * 100}\n")
sys.stdout.flush()
ret = os.system(
f'docker run --rm -v "$(pwd)":/ivy -v "$(pwd)"/.hypothesis:/.hypothesis unifyai/ivy:latest python3 -m pytest --tb=short {test} --skip-trace-testing --backend {backend}' # noqa
)
if ret != 0:
failed = True
module, submodule, test = get_mod_submod_test(test)
params = {
"module": module,
"submodule": submodule,
"backend": backend[:-1],
"test": test,
}
response = requests.get(url, params=params)
if response.status_code == 200 and response.json():
f_write.write(line)
if failed:
exit(1)