This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
python-emails/tox.ini

27 lines
601 B
INI
Raw Normal View History

2015-02-21 21:56:59 +01:00
# Tox (http://tox.testrun.org/) 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]
2015-04-04 10:37:06 +02:00
envlist = py26, py27, py33, py34, pypy
2015-02-21 21:56:59 +01:00
[testenv]
2015-03-06 19:41:28 +01:00
commands = py.test --cov-report term --cov-report html --cov emails {posargs}
2015-02-21 21:56:59 +01:00
[testenv:py26]
deps =
-rrequirements/tests-2.6.txt
[testenv:py27]
deps =
-rrequirements/tests-2.7.txt
[testenv:py33]
deps =
-rrequirements/tests-3.3.txt
[testenv:py34]
deps =
-rrequirements/tests-3.4.txt