2015-04-29 12:55:03 +00: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]
|
2017-11-26 20:20:57 +00:00
|
|
|
envlist = py27, py34
|
2015-04-29 12:55:03 +00:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
deps=pytest
|
|
|
|
# This creates the virtual envs with --site-packages so already packages
|
|
|
|
# that are already installed will be reused. This is especially useful on
|
|
|
|
# Windows. Since we use lxml instead of compiling it locally (which in turn
|
|
|
|
# requires a Compiler and the build dependencies), you can download
|
|
|
|
# it from http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml and install it via
|
|
|
|
# $PYTHONDIR\Scripts\pip.exe install *.whl
|
2015-04-29 21:35:18 +00:00
|
|
|
sitepackages=True
|
2015-04-29 12:55:03 +00:00
|
|
|
commands =
|
|
|
|
pip install -r requirements.txt
|
|
|
|
py.test
|