fix: move test-only deps out of requirements.txt into requirements-dev.txt (#411)

* fix: remove test-only deps from requirements.txt, add requirements-dev.txt

Test dependencies (pytest, pytest-asyncio, pytest-mock, pytest-benchmark) should
not be installed in production. Move them to requirements-dev.txt.

Closes #410

Signed-off-by: Cocoon-Break <54054995+kuishou68@users.noreply.github.com>

* fix: add requirements-dev.txt with test and dev dependencies

Closes #410

Signed-off-by: Cocoon-Break <54054995+kuishou68@users.noreply.github.com>

---------

Signed-off-by: Cocoon-Break <54054995+kuishou68@users.noreply.github.com>
This commit is contained in:
Cocoon-Break
2026-04-26 08:11:34 +08:00
committed by GitHub
parent 7f201bdf6f
commit 1c17c50930
2 changed files with 15 additions and 13 deletions
+13
View File
@@ -0,0 +1,13 @@
# Development and testing dependencies
# Install with: pip install -r requirements.txt -r requirements-dev.txt
# Testing
pytest>=7.0.0
pytest-asyncio>=0.21.0
pytest-mock>=3.10.0
pytest-benchmark>=4.0.0
# Linting and formatting
black>=23.0.0
flake8>=6.0.0
mypy>=1.0.0