Skip to content

Commit 6270066

Browse files
feat: Add pytest-mock dependency for generated tests
- Add pytest-mock>=3.14.0,<4.0 to dev dependencies - Required for mocking fixtures in LLM-generated tests - Enables mocker fixture usage in test generation - Supports Phase 2 & 3 test validation Phase 2 & 3 successfully generated comprehensive test files: - batch100/test_workflow_behavioral.py: 42KB (Phase 2) - batch101/test_config_behavioral.py: 30KB, 63 tests (Phase 3) Infrastructure fixes complete - ready for production use
1 parent 3a5ef21 commit 6270066

7 files changed

Lines changed: 6299 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ dev = [
182182
"pytest>=7.0,<10.0", # Updated upper bound for pytest 9.x
183183
"pytest-asyncio>=0.21,<2.0", # Updated for pytest-asyncio 1.x
184184
"pytest-cov>=4.0,<8.0", # Updated upper bound
185+
"pytest-mock>=3.14.0,<4.0", # Mock fixtures for testing
185186
"pytest-xdist>=3.5.0,<4.0", # Parallel test execution (4-8x faster)
186187
"pytest-testmon>=2.1.0,<3.0", # Run only tests affected by changes
187188
"pytest-picked>=0.5.0,<1.0", # Run tests for uncommitted changes

0 commit comments

Comments
 (0)