mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 15:00:19 +00:00
3e4d6fb5aa
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
9 lines
135 B
INI
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
|