Some checks failed
Deploy Development / deploy (push) Successful in 35s
Test Suite / pytest-backend (push) Successful in 5s
Test Suite / lint-backend (push) Successful in 1s
Test Suite / build-frontend (push) Successful in 6s
Test Suite / playwright-tests (push) Failing after 39s
- Bumped application version to 0.8.33 in both backend and frontend files. - Refactored pytest-backend job in CI workflow to run tests within the deployed backend container, eliminating the need for a separate Python/Postgres service. - Updated pytest.ini to include new test markers for smoke and slow tests, and adjusted default options for pytest execution. - Enhanced changelog to reflect the new version and changes made in this release.
11 lines
336 B
INI
11 lines
336 B
INI
[pytest]
|
|
testpaths = tests
|
|
pythonpath = .
|
|
python_files = test_*.py
|
|
python_functions = test_*
|
|
addopts = -q --tb=short
|
|
markers =
|
|
smoke: Schnelle Kern-Regression.
|
|
integration: PostgreSQL-Mandanten-Integration (ACCESS_LAYER_INTEGRATION=1).
|
|
slow: Lange/schwere Tests; in CI wie Mitai-Jinkendo ausgeschlossen (Auswahl: not slow).
|