Files
wizarr/pytest.ini
Matthieu B fe29e1ac7a feat: implement dual PR workflow with RC and Release branches
- CalVer automation now creates two PRs: RC (beta) and Release (production)
- RC PRs create GitHub pre-releases and trigger beta Docker builds
- Release PRs create GitHub releases and trigger production Docker builds
- Release PR merge auto-closes corresponding RC PR
- Manual control: merge RC when ~90% confident, Release when 100% confident
- Docker tags: RC builds :beta/:rc, Production builds :latest
- Enhanced documentation with complete workflow explanation
2025-09-06 19:43:35 +02:00

8 lines
245 B
INI

[pytest]
minversion = 6.0
addopts = -ra -q --tb=short
testpaths = tests
python_files = test_*.py
filterwarnings =
ignore:jsonschema.RefResolver is deprecated:DeprecationWarning
# Playwright will be enabled via conftest.py for E2E tests only