All checks were successful
Deploy Development / deploy (push) Successful in 38s
Test Suite / pytest-backend (push) Successful in 37s
Test Suite / lint-backend (push) Successful in 0s
Test Suite / build-frontend (push) Successful in 13s
Test Suite / k6 /health Baseline (push) Successful in 33s
Test Suite / playwright-tests (push) Successful in 1m8s
- Enhanced the pytest workflow in `.gitea/workflows/test.yml` to include `TRAINING_PLANNING_INTEGRATION` for improved testing against the PostgreSQL database. - Updated `pytest.ini` to clarify integration marker usage, specifying both `ACCESS_LAYER_INTEGRATION` and `TRAINING_PLANNING_INTEGRATION`. - Revised documentation in `test_training_planning_sections_integration.py` to provide clearer activation instructions for local and CI environments.
11 lines
365 B
INI
11 lines
365 B
INI
[pytest]
|
|
testpaths = tests
|
|
pythonpath = .
|
|
python_files = test_*.py
|
|
python_functions = test_*
|
|
addopts = -q --tb=short
|
|
markers =
|
|
smoke: Schnelle Kern-Regression.
|
|
integration: PostgreSQL-Integration (z. B. ACCESS_LAYER_INTEGRATION=1, TRAINING_PLANNING_INTEGRATION=1).
|
|
slow: Lange/schwere Tests; in CI wie Mitai-Jinkendo ausgeschlossen (Auswahl: not slow).
|