- Updated the test execution command in the CI workflow to run all tests excluding slow ones, improving efficiency. - Enhanced the AdminCsvTemplateEditorPage to support custom equivalence for unit conversions, allowing for more flexible data handling. - Added markers in pytest configuration for categorizing tests, facilitating better test management.
10 lines
274 B
INI
10 lines
274 B
INI
[pytest]
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_functions = test_*
|
|
addopts = -q --tb=short
|
|
markers =
|
|
smoke: Fast smoke tests for core regression checks.
|
|
integration: Integration tests across modules/db/api behavior.
|
|
slow: Long-running or heavy tests.
|