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

13 lines
338 B
Python
Raw 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={"mine_test.py", "random_test.py", "same_root_test.py"},
2024-02-01 07:54:31 +00:00
long_manual_tests={"fuzz_test.py"},
single_run_tests={"mine_with_market_test.py"},
2024-02-01 07:54:31 +00:00
)