0g-storage-node/tests/test_all.py

12 lines
267 B
Python
Raw Permalink Normal View History

2024-01-03 10:24:52 +00:00
#!/usr/bin/env python3
2024-02-01 07:54:31 +00:00
import os
2024-01-03 10:24:52 +00:00
2024-02-01 07:54:31 +00:00
from utility.run_all import run_all
2024-01-03 10:24:52 +00:00
if __name__ == "__main__":
2024-02-01 07:54:31 +00:00
run_all(
test_dir = os.path.dirname(__file__),
slow_tests={"random_test.py", "same_root_test.py"},
long_manual_tests={"fuzz_test.py"},
)