12345678910111213141516171819202122232425 |
- [coverage:run]
- source = src
- [coverage:report]
- ignore_errors = False
- show_missing = True
- [coverage:xml]
- output = coverage.xml
- [tool:pytest]
- markers =
- noci: marks tests so that they are not executed in continuous integration (jenkins)
- testpaths = tests/
- junit_family = xunit2
- console_output_style = progress
- log_level = DEBUG
- DJANGO_SETTINGS_MODULE = tests.settings
- [build_sphinx]
- ; python setup.py build_sphinx # Generate the HTML documentation in dist/docs/html
- source-dir = docs/source
- build-dir = dist/docs
- all_files = 1
|