pytest.ini 248 B

123456789
  1. [pytest]
  2. markers =
  3. e2e: End-to-end tests that require running Modal service
  4. slow: Tests that take >30 seconds to complete
  5. unit: Fast unit tests
  6. testpaths = tests
  7. python_files = test_*.py
  8. python_classes = Test*
  9. python_functions = test_*