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.
 
 
 

46 lines
1.0 KiB

  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 --pep8 tests
  15. # --maxfail=2 -n4
  16. # -n4 runs up to 4 parallel procs
  17. # --maxfail=2 fail fast, dude
  18. # --durations=3 report the top 3 longest tests
  19. # these are important for distributed testing, to speedup their execution we minimize what we sync
  20. rsyncdirs = . jira demo docs
  21. rsyncignore = .hg .git
  22. pep8ignore = E501 E265 E127 E901 E128 E402
  23. [pep8]
  24. exclude=build,lib,.tox,third,*.egg,docs,packages
  25. ;filename=
  26. ;select
  27. ignore=E501,E265,E402
  28. max-line-length=1024
  29. count=1
  30. ;format
  31. ;quiet
  32. ;show-pep8
  33. ;show-source
  34. statistics=1
  35. ;verbose=1
  36. ;PEP8_OPTS="--filename=*.py --exclude=lib --ignore=E501 scripts"
  37. ;pep8 $PEP8_OPTS --show-source --repeat
  38. ;pep8 --statistics -qq $PEP8_OPTS