diff --git a/examples/team_recommender/tests/__init__.py b/examples/team_recommender/tests/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/examples/team_recommender/tests/example_4_loop_no_hallucinating/test_allocations_hallucinating.py b/examples/team_recommender/tests/example_4_loop_no_hallucinating/test_allocations_hallucinating.py index aa86d9a..47e89ba 100644 --- a/examples/team_recommender/tests/example_4_loop_no_hallucinating/test_allocations_hallucinating.py +++ b/examples/team_recommender/tests/example_4_loop_no_hallucinating/test_allocations_hallucinating.py @@ -2,7 +2,6 @@ import os from cat_ai.reporter import Reporter from cat_ai.runner import Runner -from pyparsing import empty from tests.settings import ROOT_DIR from openai import OpenAI diff --git a/src/cat_ai/reporter.py b/src/cat_ai/reporter.py index 2781742..615cd57 100644 --- a/src/cat_ai/reporter.py +++ b/src/cat_ai/reporter.py @@ -11,7 +11,7 @@ class Reporter: @staticmethod def _create_unique_id_from_time() -> str: - return datetime.now().strftime("%Y%m%d_%H%M%S") + return datetime.now().strftime("%m%d-%H_%M_%S") def __init__( self, test_name: str, output_dir: str, unique_id: str | None = None, metadata: Optional[Dict[str, Any]] = None diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/cat_ai/__init__.py b/tests/cat_ai/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/cat_ai/test_reporter.py b/tests/test_reporter.py similarity index 97% rename from tests/cat_ai/test_reporter.py rename to tests/test_reporter.py index aac3552..c715f5c 100644 --- a/tests/cat_ai/test_reporter.py +++ b/tests/test_reporter.py @@ -5,7 +5,7 @@ from src.cat_ai.helpers.helpers import root_dir -def test_reporter_create_a_unique_folder_path() -> None: +def test_reporter_creates_a_unique_folder_path() -> None: test_name = "unique_folder_path" reporter1 = Reporter(test_name=test_name, output_dir=root_dir()) expected_dir_path = f"{root_dir()}/test_runs/{test_name}" diff --git a/tests/cat_ai/test_runner.py b/tests/test_runner.py similarity index 100% rename from tests/cat_ai/test_runner.py rename to tests/test_runner.py