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.
 
 
 

27 lines
591 B

  1. [tox]
  2. minversion = 2.3.1
  3. envlist = {py27,py34,py35}-{win,linux,darwin}
  4. #envlist = {py35}-{win,linux,darwin}
  5. addopts = --ignore=setup.py
  6. skip_missing_interpreters = true
  7. tox_pyenv_fallback=True
  8. ignore_errors=False
  9. [testenv]
  10. sitepackages=True
  11. platform =
  12. win: windows
  13. linux: linux
  14. darwin: darwin
  15. deps=
  16. -rrequirements.txt
  17. -rrequirements-dev.txt
  18. commands=
  19. python -m flake8
  20. python setup.py build test install sdist bdist_wheel
  21. # Note: do not try to use pytest-flake8 due to https://github.com/tholo/pytest-flake8/issues/8
  22. # python -m py.test --cov-report xml