pytest.ini 305 B

12345678910111213
  1. [pytest]
  2. addopts =
  3. # show tests that (f)ailed, (E)rror, or (X)passed in the summary
  4. -rfEX
  5. # Make tracebacks shorter
  6. --tb=short
  7. # enable all warnings
  8. -Wd
  9. --ignore=test/test_datasets_download.py
  10. --ignore-glob=test/test_prototype_*.py
  11. testpaths =
  12. test
  13. xfail_strict = True