diff options
| author | 2025-11-01 19:52:56 +0800 | |
|---|---|---|
| committer | 2025-11-01 19:52:56 +0800 | |
| commit | 158966aaeb509dcc3ac325aedf155290cc6c0d88 (patch) | |
| tree | dc8d19b80fc9dbd30b7abe906600e813b7db9609 /tests | |
| parent | 251a104f02a618c7ea4554bf374ddfca43f60f6c (diff) | |
| parent | 4644d33d0c23db46d706ec5667a759d6f92ebbf8 (diff) | |
| download | conventional_role_play-158966aaeb509dcc3ac325aedf155290cc6c0d88.tar.gz conventional_role_play-158966aaeb509dcc3ac325aedf155290cc6c0d88.zip | |
Merge pull request #15 from HydroRoll-Team/feat-visualization
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/run_tests.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/run_tests.py b/tests/run_tests.py deleted file mode 100644 index b776062..0000000 --- a/tests/run_tests.py +++ /dev/null @@ -1,24 +0,0 @@ -import sys -import unittest -from pathlib import Path - -src_path = Path(__file__).parent.parent / "src" -sys.path.insert(0, str(src_path)) - - -def run_all_tests(): - loader = unittest.TestLoader() - - suite = loader.discover( - start_dir=Path(__file__).parent, - pattern='test_*.py' - ) - - runner = unittest.TextTestRunner(verbosity=2) - result = runner.run(suite) - - return 0 if result.wasSuccessful() else 1 - - -if __name__ == "__main__": - sys.exit(run_all_tests()) |
