mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 17:04:50 +01:00
dd7f1c4cce
This hopefully fixes SSL timeout errors. Fixes #308
22 lines
373 B
INI
22 lines
373 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}
|
|
|
|
[pytest]
|
|
addopts = --tb=native
|