From 0ed3fd12666a3017fcc9d0b1ff6d4690e0feb21f Mon Sep 17 00:00:00 2001 From: Thomas Date: Thu, 21 Nov 2024 09:04:27 +0800 Subject: [PATCH] chore: add more test files --- tests/run_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run_test.py b/tests/run_test.py index 45d78f7d..1828f237 100644 --- a/tests/run_test.py +++ b/tests/run_test.py @@ -110,7 +110,7 @@ def run_model_tests(model_name): print(f"\nTesting model: {model_name}") stats = TestStats() test_files = ["supervisor_chain.py"] \ - # + glob.glob("agent_trajectory/*.py") + + glob.glob("agent_trajectory/*.py") pytest.main(["--count=1", "-n", "11"] + test_files + [f"--model={model_name}"] + sys.argv[1:], plugins=[stats]) return stats.calculate_model_score()