httpie-cli/tox.ini

22 lines
366 B
INI
Raw Normal View History

# Tox (http://tox.testrun.org/) is a tool for running tests
2014-04-24 21:36:03 +02:00
# in multiple virtualenvs.
# Run:
# $ pip install -r requirements-dev.txt
# $ tox
[tox]
2014-04-24 17:08:40 +02:00
envlist = py26, py27, py34, pypy
2014-04-24 21:36:03 +02:00
[testenv]
2014-04-26 16:50:31 +02:00
deps =
pytest
pytest-httpbin
2014-04-24 21:36:03 +02:00
commands =
py.test --verbose --doctest-modules --basetemp={envtmpdir} {posargs:./tests ./httpie}
[pytest]
addopts = --tb=native