pytest.ini 386 B

1234567891011121314
  1. [pytest]
  2. testpaths = tests plugins
  3. python_files = test_*.py
  4. python_classes = Test*
  5. python_functions = test_*
  6. asyncio_mode = auto
  7. asyncio_default_fixture_loop_scope = function
  8. addopts = -v --tb=short --import-mode=importlib
  9. filterwarnings =
  10. ignore::DeprecationWarning
  11. ignore::PendingDeprecationWarning
  12. # Plugin-Tests werden automatisch gefunden via:
  13. # plugins/*/tests/test_*.py