From b0b343e0091d17252129c2358843612cb4772e33 Mon Sep 17 00:00:00 2001 From: finn Date: Sat, 3 Jan 2026 01:54:56 -0700 Subject: [PATCH] tests cleanup --- AGENTS.md | 1 + test_end_to_end.py => tests/test_end_to_end.py | 0 .../test_feedback_integration.py | 0 test_final_fix.py => tests/test_final_fix.py | 0 test_new_format.py => tests/test_new_format.py | 0 test_project.py => tests/test_project.py | 0 test_prompt_logic.py => tests/test_prompt_logic.py | 0 test_valid_response.py => tests/test_valid_response.py | 0 8 files changed, 1 insertion(+) rename test_end_to_end.py => tests/test_end_to_end.py (100%) rename test_feedback_integration.py => tests/test_feedback_integration.py (100%) rename test_final_fix.py => tests/test_final_fix.py (100%) rename test_new_format.py => tests/test_new_format.py (100%) rename test_project.py => tests/test_project.py (100%) rename test_prompt_logic.py => tests/test_prompt_logic.py (100%) rename test_valid_response.py => tests/test_valid_response.py (100%) diff --git a/AGENTS.md b/AGENTS.md index a4c5ccb..14160ec 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -97,3 +97,4 @@ Successfully implemented a new menu item and functionality for generating theme The implementation maintains backward compatibility while adding valuable feedback functionality to improve prompt generation quality over time. +Too many tests, so I moved all of them into the tests directory. diff --git a/test_end_to_end.py b/tests/test_end_to_end.py similarity index 100% rename from test_end_to_end.py rename to tests/test_end_to_end.py diff --git a/test_feedback_integration.py b/tests/test_feedback_integration.py similarity index 100% rename from test_feedback_integration.py rename to tests/test_feedback_integration.py diff --git a/test_final_fix.py b/tests/test_final_fix.py similarity index 100% rename from test_final_fix.py rename to tests/test_final_fix.py diff --git a/test_new_format.py b/tests/test_new_format.py similarity index 100% rename from test_new_format.py rename to tests/test_new_format.py diff --git a/test_project.py b/tests/test_project.py similarity index 100% rename from test_project.py rename to tests/test_project.py diff --git a/test_prompt_logic.py b/tests/test_prompt_logic.py similarity index 100% rename from test_prompt_logic.py rename to tests/test_prompt_logic.py diff --git a/test_valid_response.py b/tests/test_valid_response.py similarity index 100% rename from test_valid_response.py rename to tests/test_valid_response.py