mirror of
https://github.com/httpie/cli.git
synced 2024-11-28 08:38:44 +02:00
20 lines
346 B
INI
20 lines
346 B
INI
# Tox (http://tox.testrun.org/) is a tool for running tests
|
|
# in multiple virtualenvs.
|
|
# Run:
|
|
# $ pip install -r requirements-dev.txt
|
|
# $ tox
|
|
|
|
|
|
[tox]
|
|
envlist = py26, py27, py34, pypy
|
|
|
|
|
|
[testenv]
|
|
deps =
|
|
pytest
|
|
pytest-xdist
|
|
pytest-httpbin
|
|
|
|
commands =
|
|
py.test -n 8 --doctest-modules --basetemp={envtmpdir} {posargs:./tests ./httpie}
|