You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
836 B

  1. [metadata]
  2. description-file = README
  3. [bdist_wheel]
  4. universal = 1
  5. [build_sphinx]
  6. source-dir = docs
  7. build-dir = docs/build
  8. all_files = 1
  9. [upload_sphinx]
  10. upload-dir = docs/build/html
  11. [pytest]
  12. norecursedirs = . .svn jira _build tmp* lib/third lib *.egg bin distutils build docs demo
  13. python_files = *.py
  14. addopts = -p no:xdist --ignore=setup.py --tb=long -rsxX -v --maxfail=10 --flake8 tests
  15. timeout=60
  16. # --maxfail=2 -n4
  17. # -n4 runs up to 4 parallel procs
  18. # --maxfail=2 fail fast, dude
  19. # --durations=3 report the top 3 longest tests
  20. # these are important for distributed testing, to speedup their execution we minimize what we sync
  21. rsyncdirs = . jira demo docs
  22. rsyncignore = .hg .git
  23. flake8-max-line-length = 99
  24. flake8-ignore = D D100 E402
  25. [flake8]
  26. max-line-length=160
  27. exclude=build
  28. statistics=yes
  29. ignore = D,E402