fix: pytest marker registration + config repair (split 4/6 of #125)#133
Merged
Conversation
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
|
❌ Too Many Files Changed ❌ PR Too Large 📋 Best Practices for Large Changes
🚫 This PR is blocked from merging until size limits are met. |
Extracted from #125 (commit 42fdbd1 + pytest.ini hunk of 9b0d03c): - pytest.ini: register compliance/performance/slow/contract/finding markers so --strict-markers no longer rejects marked tests - pytest.ini: drop global -x (stop-on-first-failure hid the true failure count in CI); add -ra for skip/xfail reporting - pyproject.toml: sync the [tool.pytest.ini_options] marker list and document that pytest.ini is the authoritative config Local verification: pytest --collect-only completes with zero collection errors (previously interrupted by strict-marker rejections).
cryptoxdog
force-pushed
the
fix/pytest-config
branch
from
July 22, 2026 21:20
2c0a0f7 to
062f1d3
Compare
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Summary
Pytest configuration repair extracted from #125 (commit 42fdbd1 plus the pytest.ini hunk of 9b0d03c).
Changes
compliance,performance,slow,contract,findingmarkers so--strict-markersno longer rejects marked tests; drop global-x(stop-on-first-failure hid the true failure count in CI); add-ra[tool.pytest.ini_options]marker list and document that pytest.ini is the authoritative configLocal verification
pytest tests/ --collect-onlycompletes with zero collection errorsSee #130 for the full split-series map replacing #125.