0g-storage-node/tests/test_all.py
Bo QIU 052d2d781b
Some checks are pending
abi-consistent-check / build-and-compare (push) Waiting to run
code-coverage / unittest-cov (push) Waiting to run
rust / check (push) Waiting to run
rust / test (push) Waiting to run
rust / lints (push) Waiting to run
functional-test / test (push) Waiting to run
Change zg chain block time in python tests (#181)
* Change zg chain block time in python tests
2024-09-08 08:38:53 +08:00

13 lines
338 B
Python
Executable File

#!/usr/bin/env python3
import os
from utility.run_all import run_all
if __name__ == "__main__":
run_all(
test_dir = os.path.dirname(__file__),
slow_tests={"mine_test.py", "random_test.py", "same_root_test.py"},
long_manual_tests={"fuzz_test.py"},
single_run_tests={"mine_with_market_test.py"},
)