mirror of
https://github.com/kennethreitz/clint.git
synced 2026-06-05 06:46:16 +00:00
e7db8c7e37
Removed py25 support and tox testing since try/except statements were >=2.5. Try setup import from setuptools so python setup.py develop is available.
13 lines
197 B
INI
13 lines
197 B
INI
[tox]
|
|
envlist = py26,py27,py3
|
|
|
|
[testenv]
|
|
commands=py.test --junitxml=junit-{envname}.xml
|
|
deps = pytest
|
|
args
|
|
|
|
[testenv:pypy]
|
|
basepython=/usr/bin/pypy-c
|
|
|
|
[testenv:py3]
|
|
basepython=/usr/bin/python3 |