mirror of
https://github.com/httpie/cli.git
synced 2024-11-25 09:13:25 +01:00
4cadc1d4c0
* Move it from tox.ini to pytest.ini * Ignore tests/fixtures
19 lines
341 B
INI
19 lines
341 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-httpbin>=0.0.6
|
|
|
|
commands =
|
|
py.test --verbose --doctest-modules --basetemp={envtmpdir} {posargs:./tests ./httpie}
|