pyproject.toml 242 B

12345678910111213
  1. [build-system]
  2. requires = ['setuptools>=42']
  3. build-backend = 'setuptools.build_meta'
  4. [tool.pytest.ini_options]
  5. markers = [
  6. "slow: marks tests as slow (deselect with '-m \"not slow\"')",
  7. ]
  8. testpaths = [
  9. "tests"
  10. ]
  11. xfail_strict = true