Example 1: Generate Basic Configuration (+2)
Example 1: Generate Basic Configuration
# Generate for standard project
/pytest-fixture-generator
# Creates:
# - pytest.ini
# - tests/conftest.py
# - tests/test_example.py
Example 2: Custom Markers
# Generate with domain-specific markers
/pytest-fixture-generator --markers unit,integration,api,database,etl
Example 3: Specific Coverage Target
# Generate with 90% coverage requirement
/pytest-fixture-generator --coverage 90