tox.ini 996 B

123456789101112131415161718192021222324252627282930313233343536
  1. [tox]
  2. skipsdist = true
  3. envlist = py{27,33,34}-pelican{34,35,36,dev}
  4. [testenv]
  5. basepython =
  6. py27: python2.7
  7. py33: python3.3
  8. py34: python3.4
  9. deps =
  10. pelican34: git+https://github.com/getpelican/pelican.git@3.4.0#egg=pelican
  11. pelican35: git+https://github.com/getpelican/pelican.git@3.5.0#egg=pelican
  12. pelican36: git+https://github.com/getpelican/pelican.git@3.6.3#egg=pelican
  13. pelicandev: git+https://github.com/getpelican/pelican.git#egg=pelican
  14. beautifulsoup4
  15. -rdev_requirements.txt
  16. passenv = *
  17. install_command= pip install {opts} -e {packages}
  18. commands =
  19. {envpython} --version
  20. pelican --version
  21. {envpython} test_toc.py
  22. [flake8]
  23. application-import-names=toc
  24. import-order-style=cryptography
  25. [testenv:flake8]
  26. basepython = python2.7
  27. deps =
  28. flake8 <= 2.4.1
  29. git+https://github.com/public/flake8-import-order@2ac7052a4e02b4a8a0125a106d87465a3b9fd688
  30. install_command= pip install {opts} {packages}
  31. commands =
  32. flake8 --version
  33. flake8 toc.py