0g-storage-node/tests/test_all.py
2024-02-01 15:54:31 +08:00

12 lines
267 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={"random_test.py", "same_root_test.py"},
long_manual_tests={"fuzz_test.py"},
)