paper-dynasty-gameplay-webapp/.vscode/settings.json
Cal Corum 1c24161e76 CLAUDE: Achieve 100% test pass rate with comprehensive AI service testing
- 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>
2025-09-28 17:55:34 -05:00

16 lines
529 B
JSON

{
"python.testing.pytestArgs": [
"tests",
"--tb=short",
"-v"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.autoTestDiscoverOnSaveEnabled": true,
"python.testing.pytestPath": "pytest",
"python.defaultInterpreterPath": "./venv/bin/python",
"python.testing.cwd": "${workspaceFolder}",
"python.terminal.activateEnvironment": true,
"python.testing.promptToConfigure": false,
"testExplorer.useNativeTesting": true
}