- Fix TypeError in check_steal_opportunity by properly mocking catcher defense - Correct tag_from_third test calculation to account for all adjustment conditions - Fix pitcher replacement test by setting appropriate allowed runners threshold - Add comprehensive test coverage for AI service business logic - Implement VS Code testing panel configuration with pytest integration - Create pytest.ini for consistent test execution and warning management - Add test isolation guidelines and factory pattern implementation - Establish 102 passing tests with zero failures 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
405 B
INI
17 lines
405 B
INI
[tool:pytest]
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
addopts =
|
|
--tb=short
|
|
--strict-markers
|
|
--disable-warnings
|
|
--verbose
|
|
markers =
|
|
unit: Unit tests that mock dependencies
|
|
integration: Integration tests with database
|
|
slow: Slow running tests
|
|
filterwarnings =
|
|
ignore::sqlalchemy.exc.SAWarning
|
|
ignore::DeprecationWarning |