ce7ca26835
Unfortunately the Python 2 `raise` syntax is not supported in Python 3.3 and not all 3.4.x versions so we deal with that by using conditional imports and a compatibility layer.
21 lines
793 B
INI
21 lines
793 B
INI
# 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]
|
|
envlist = py26, py27, py33, py34
|
|
|
|
[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
|
|
sitepackages=True
|
|
commands =
|
|
pip install -r requirements.txt
|
|
py.test
|