tox.ini 249 B

12345678910111213141516
  1. [tox]
  2. envlist = py27, py35, py36
  3. [testenv]
  4. commands = py.test
  5. deps =
  6. pytest>=2.3.5, < 3.3
  7. pandas
  8. numpy
  9. [testenv:cov]
  10. deps =
  11. coverage
  12. {[testenv]deps}
  13. commands =
  14. coverage run --source pathfinding -m py.test
  15. coverage report