Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

pytest.ini 305 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
  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
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...