mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 23:10:17 +00:00
17 lines
295 B
INI
17 lines
295 B
INI
[tox]
|
|
envlist = py25,py26,py27,py3
|
|
|
|
[testenv]
|
|
commands=py.test --junitxml=junit-{envname}.xml
|
|
deps = pytest
|
|
|
|
[testenv:py25]
|
|
simplejson = pytest simplejson
|
|
|
|
[testenv:pypy]
|
|
basepython=/usr/bin/pypy-c
|
|
simplejson = pytest simplejson
|
|
|
|
[testenv:py3]
|
|
basepython=/usr/bin/python3
|
|
simplejson = pytest |