All checks were successful
Test pipeline / test (push) Successful in 16s
- Convert Forgejo workflow to GitLab CI/CD (.gitlab-ci.yml) - Add JUnit XML and coverage reporting with pytest-cov - Configure caching and artifacts for better CI performance - Fix pytest.ini configuration and enhance .coveragerc - Support GitLab v18.1.1 with comprehensive test visualization
15 lines
272 B
INI
15 lines
272 B
INI
[pytest]
|
|
addopts =
|
|
--cov=doi2dataset
|
|
--cov-report=html
|
|
--cov-report=xml
|
|
--cov-report=term-missing
|
|
--junitxml=junit.xml
|
|
--verbose
|
|
--tb=short
|
|
|
|
testpaths = tests
|
|
|
|
python_files = test_*.py *_test.py
|
|
python_functions = test_*
|
|
python_classes = Test*
|