jellyfish/tox.ini

43 lines
871 B
INI
Raw Normal View History

2014-03-15 02:24:00 +00:00
[tox]
2015-10-09 00:19:30 +00:00
envlist = py27,pypy,py33,py34,py35,flake8
2015-02-20 21:59:34 +00:00
[testenv:py27]
whitelist_externals = rm
2015-02-20 21:59:34 +00:00
commands =
rm -f jellyfish/cjellyfish.so
2015-02-20 21:59:34 +00:00
pip install -e .
py.test jellyfish/test.py
deps = pytest
unicodecsv
[testenv:pypy]
commands =
pip install -e .
py.test jellyfish/test.py
2015-02-20 21:59:34 +00:00
deps = pytest
unicodecsv
2015-10-09 00:19:30 +00:00
[testenv:py33]
whitelist_externals = rm
commands =
rm -f jellyfish/cjellyfish.so
pip install -e .
py.test jellyfish/test.py
2015-02-20 21:59:34 +00:00
[testenv:py34]
whitelist_externals = rm
2015-10-09 00:19:30 +00:00
commands =
rm -f jellyfish/cjellyfish.so
pip install -e .
py.test jellyfish/test.py
[testenv:py35]
whitelist_externals = rm
2014-08-11 18:38:46 +00:00
commands =
rm -f jellyfish/cjellyfish.so
2014-08-11 18:38:46 +00:00
pip install -e .
py.test jellyfish/test.py
deps = pytest
2014-03-15 02:24:00 +00:00
[testenv:flake8]
2015-02-19 19:51:38 +00:00
basepython=python2.7
2014-03-15 02:24:00 +00:00
deps = flake8
commands = flake8 jellyfish
[flake8]
max-line-length=99
2015-02-24 15:54:57 +00:00
ignore=E402,E226