30b237dc73
- Add types-requests and types-paramiko stubs to requirements-dev.txt - Configure mypy disable_error_code in pyproject.toml for SQLAlchemy/ORM false positives and dynamic library type issues - Add comprehensive pylint configuration in pyproject.toml with documented suppressions for framework-specific patterns and false positives - Update CI workflow to use pyproject.toml config instead of inline flags - Both mypy and pylint now pass with exit code 0 Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
38 lines
824 B
Plaintext
38 lines
824 B
Plaintext
# Development and testing dependencies
|
|
-r requirements.txt
|
|
|
|
# Testing
|
|
pytest>=8.0.0
|
|
pytest-cov>=4.1.0
|
|
pytest-asyncio>=0.23.0
|
|
pytest-mock>=3.12.0
|
|
httpx>=0.26.0 # For async test client
|
|
testcontainers>=3.7.1 # For integration tests with real containers
|
|
fpdf2>=2.8.0 # For generating test PDF documents in integration tests
|
|
minio>=7.1.0 # For MinIO/S3 integration tests
|
|
redis>=4.5.0 # For Redis integration tests
|
|
boto3>=1.26.0 # For S3 integration tests
|
|
|
|
# Code quality
|
|
flake8>=7.0.0
|
|
black>=24.0.0
|
|
mypy>=1.8.0
|
|
pylint>=3.0.0
|
|
isort>=5.13.0
|
|
|
|
# Type stubs for mypy
|
|
types-requests>=2.31.0
|
|
types-paramiko>=3.0.0
|
|
|
|
# Security scanning
|
|
bandit>=1.7.6
|
|
safety>=3.0.0
|
|
|
|
# Pre-commit hooks
|
|
pre-commit>=3.6.0
|
|
|
|
# License compliance
|
|
pip-licenses==5.5.1 # For license compliance checking
|
|
|
|
# Release automation
|
|
python-semantic-release>=9.0.0 |