pyproject.toml 359 B

123456789
  1. [tool.pytest.ini_options]
  2. DJANGO_SETTINGS_MODULE = "desktop.settings"
  3. addopts = "-v -m 'not integration' --strict-markers --durations=10"
  4. norecursedirs = "desktop/core/ext-py3"
  5. python_files = "tests.py test_*.py *_tests.py tests_* *_test.py"
  6. markers = [
  7. "integration: live server based tests",
  8. "requires_hadoop: live hadoop cluster based tests"
  9. ]