mirror of
https://github.com/wizarrrr/wizarr.git
synced 2026-06-11 23:34:47 -04:00
- 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
8 lines
245 B
INI
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 |