tox.ini 506 B

1234567891011121314151617181920212223242526272829303132333435
  1. [tox]
  2. envlist = py27, py34, py35, pypy, flake8, pylint
  3. [testenv]
  4. deps=
  5. nose
  6. python-snappy
  7. pymongo
  8. commands=nosetests
  9. # Linters
  10. [testenv:flake8]
  11. basepython = python3
  12. skip_install = true
  13. deps =
  14. flake8
  15. flake8-docstrings>=0.2.7
  16. flake8-import-order>=0.9
  17. commands =
  18. flake8 parquet/ test/ setup.py
  19. # flake8 config
  20. [flake8]
  21. max-line-length = 120
  22. ignore = F841
  23. exclude = build
  24. [testenv:pylint]
  25. basepython = python3
  26. deps =
  27. pyflakes
  28. pylint
  29. commands =
  30. pylint parquet/ setup.py