setup.cfg 360 B

12345678910
  1. [flake8]
  2. exclude = .venv/*,build/*,coderedcms/project_template/*,*/migrations/*,schema.py
  3. max-line-length = 100
  4. [tool:pytest]
  5. DJANGO_SETTINGS_MODULE = coderedcms.tests.settings
  6. addopts = --cov coderedcms --cov-report html --cov-report xml --junitxml junit/test-results.xml
  7. python_files = tests.py test_*.py
  8. junit_family = xunit2
  9. junit_suite_name = coderedcms