mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 17:04:50 +01:00
28 lines
440 B
INI
28 lines
440 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
|
|
usedevelop = True
|
|
skipsdist = True
|
|
|
|
|
|
[testenv]
|
|
|
|
whitelist_externals =
|
|
py.test
|
|
|
|
commands =
|
|
py.test --doctest-modules \
|
|
--basetemp={envtmpdir} \
|
|
-n 8 \
|
|
{posargs:./tests ./httpie}
|
|
|
|
[testenv:py26]
|
|
deps =
|
|
argparse
|