Created
February 11, 2015 06:55
-
-
Save earthday/92a393c876327fd2d9d0 to your computer and use it in GitHub Desktop.
tox_example.ini
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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] | |
skipsdist = True | |
envlist = py27, py32 | |
[testenv] | |
commands = nosetests | |
deps = | |
-r{toxinidir}/requirements.txt | |
numpy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment