Files
tablib/tox.ini
T
Jon Dufresne 3e4d6fb5aa Include pandas dependency when testing with tox
Allows all tests to pass.

As pandas is defined as an 'extra', use tox's 'extras' feature. This
requires tox 2.4+, so document that as well.

https://tox.readthedocs.io/en/latest/config.html#conf-extras
2019-01-01 10:28:29 -08:00

9 lines
135 B
INI

[tox]
minversion = 2.4
envlist = py27, py34, py35, py36, pypy
[testenv]
deps = pytest
extras = pandas
commands = python setup.py test