38 lines
878 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 = . .git .svn tox _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 tests
  15. # remove "--flake8" due to weir errors
  16. timeout=60
  17. # --maxfail=2 -n4
  18. # -n4 runs up to 4 parallel procs
  19. # --maxfail=2 fail fast, dude
  20. # --durations=3 report the top 3 longest tests
  21. # these are important for distributed testing, to speedup their execution we minimize what we sync
  22. rsyncdirs = . demo docs
  23. rsyncignore = .hg .git
  24. flake8-max-line-length = 99
  25. #flake8-ignore=D,D102
  26. flake8-ignore=D D102
  27. [flake8]
  28. max-line-length=160
  29. exclude=build
  30. statistics=yes
  31. ignore=D,E402