tox.ini 328 B

1234567891011121314
  1. # content of: tox.ini , put in same dir as setup.py
  2. [tox]
  3. envlist = py37
  4. # tox_pyenv_fallback=False
  5. [testenv]
  6. # install pytest in the virtualenv where commands will be executed
  7. deps =
  8. pytest
  9. -rrequirements.txt
  10. commands =
  11. # NOTE: you can run any command line tool here - not just tests
  12. python -V
  13. pytest tests