2023-12-11 23:53:51 +00:00
|
|
|
import random
|
|
|
|
import string
|
2023-12-11 23:19:21 +00:00
|
|
|
import sys
|
|
|
|
import traceback
|
|
|
|
from importlib.machinery import SourceFileLoader
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
files = sys.argv[1:]
|
|
|
|
has_failure = False
|
|
|
|
for file in files:
|
|
|
|
try:
|
2023-12-11 23:53:51 +00:00
|
|
|
module_name = "".join(
|
|
|
|
random.choice(string.ascii_letters) for _ in range(20)
|
|
|
|
)
|
|
|
|
SourceFileLoader(module_name, file).load_module()
|
2023-12-11 23:19:21 +00:00
|
|
|
except Exception:
|
2023-12-11 23:53:51 +00:00
|
|
|
has_failure = True
|
2024-02-10 00:13:30 +00:00
|
|
|
print(file) # noqa: T201
|
2023-12-11 23:19:21 +00:00
|
|
|
traceback.print_exc()
|
2024-02-10 00:13:30 +00:00
|
|
|
print() # noqa: T201
|
2023-12-11 23:19:21 +00:00
|
|
|
|
|
|
|
sys.exit(1 if has_failure else 0)
|