setup.cfg 493 B

123456789101112131415161718192021222324
  1. [coverage:run]
  2. source = src
  3. [coverage:report]
  4. ignore_errors = False
  5. show_missing = True
  6. [coverage:xml]
  7. output = coverage.xml
  8. [tool:pytest]
  9. markers =
  10. noci: marks tests so that they are not executed in continuous integration (jenkins)
  11. testpaths = tests/
  12. junit_family = xunit2
  13. console_output_style = progress
  14. log_level = DEBUG
  15. [build_sphinx]
  16. ; python setup.py build_sphinx # Generate the HTML documentation in dist/docs/html
  17. source-dir = docs/source
  18. build-dir = dist/docs
  19. all_files = 1