You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Run only fast unit tests
pytest -m unit
# Run unit and integration tests (no browser tests)
pytest -m "unit or integration"# Run everything except slow tests
pytest -m "not slow"# Run only StateManager tests
pytest -m state
# Run smoke tests for quick validation
pytest -m smoke
# Run tests for a specific component
pytest -m "game_logic and unit"
Makefile Integration
test-unit:
poetry run pytest -m unit
test-integration:
poetry run pytest -m integration
test-quick:
poetry run pytest -m "unit or (integration and not slow)"test-e2e:
poetry run pytest -m e2e
test-smoke:
poetry run pytest -m smoke