tox.ini 251 B

12345678910111213141516
  1. [tox]
  2. envlist = py{27,35,36,37,38}
  3. [testenv]
  4. deps = -r{toxinidir}/requirements-dev.txt
  5. commands =
  6. flake8
  7. pytest --cov=elidetext --cov-report=term --cov-report=xml
  8. [gh-actions]
  9. python =
  10. 2.7: py27
  11. 3.5: py35
  12. 3.6: py36
  13. 3.7: py37
  14. 3.8: py38