Revision 2fac55aa10338d1cb61ef54109bd52267d1508d7 authored by Dave Eargle on 24 June 2019, 22:20:47 UTC, committed by Dave Eargle on 27 June 2019, 20:34:13 UTC
1 parent a7fcf76
Raw File
tox.ini
# tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.

[tox]
envlist = py27, py36, py37

[testenv]
deps =
    ciso8601
    pytz
    pytest
    pytest-mock
commands =
    pytest
back to top