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(
|
2025-03-24 08:51:53 +00:00
|
|
|
test_dir=os.path.dirname(__file__),
|
2024-09-08 00:38:53 +00:00
|
|
|
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"},
|
2024-09-08 00:38:53 +00:00
|
|
|
single_run_tests={"mine_with_market_test.py"},
|
2025-03-24 08:51:53 +00:00
|
|
|
)
|