-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_run_python_file.py
More file actions
41 lines (27 loc) · 1.02 KB
/
test_run_python_file.py
File metadata and controls
41 lines (27 loc) · 1.02 KB
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
from functions.run_python_file import run_python_file
def test():
result = run_python_file("calculator", "main.py")
print("Result for executing 'calculator/main.py':")
print(result)
print("=====")
result = run_python_file("calculator", "main.py", ["3 + 5"])
print("Result for executing 'calculator/main.py' with args '[\"3 + 5\"]':")
print(result)
print("=====")
result = run_python_file("calculator", "tests.py")
print("Result for executing 'calculator/tests.py':")
print(result)
print("=====")
result = run_python_file("calculator", "../main.py")
print("Result for executing 'calculator/../main.py':")
print(result)
print("=====")
result = run_python_file("calculator", "nonexistent.py")
print("Result for executing 'calculator/nonexistent.py':")
print(result)
print("=====")
result = run_python_file("calculator", "lorem.txt")
print("Result for executing 'calculator/lorem.txt':")
print(result)
if __name__ == "__main__":
test()