From 11306dfb2ec813f113f060b49408a01c8ccdcbf7 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Tue, 9 Sep 2025 17:28:58 -0500 Subject: [PATCH] feat: add testing framework dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add pytest and visual testing dependencies to requirements.txt: - pytest>=7.0 for test framework - pytest-cov>=4.0 for coverage reports - pillow>=10.0 for image processing - imagehash>=4.3 for visual regression testing 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- requirements.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b96a5d44..61aa2c6d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,5 @@ -pyyaml>=6.0 \ No newline at end of file +pyyaml>=6.0 +pytest>=7.0 +pytest-cov>=4.0 +pillow>=10.0 +imagehash>=4.3 \ No newline at end of file