diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /third_party/python/requests-unixsocket/tox.ini | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/python/requests-unixsocket/tox.ini')
-rw-r--r-- | third_party/python/requests-unixsocket/tox.ini | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/third_party/python/requests-unixsocket/tox.ini b/third_party/python/requests-unixsocket/tox.ini new file mode 100644 index 0000000000..d061cb879e --- /dev/null +++ b/third_party/python/requests-unixsocket/tox.ini @@ -0,0 +1,48 @@ +[tox] +envlist = py26, py27, py33, py34, py35, pypy, flake8 + +[testenv] +commands = py.test {posargs:requests_unixsocket/tests} +deps = + -r{toxinidir}/requirements.txt + -r{toxinidir}/test-requirements.txt + +[testenv:flake8] +commands = flake8 +deps = + flake8 + {[testenv]deps} + +[testenv:venv] +commands = {posargs} + +[testenv:coverage] +commands = + coverage erase + coverage run --source requests_unixsocket -m py.test requests_unixsocket/tests + coverage report --show-missing + coverage html +deps = + coverage + {[testenv]deps} + +[testenv:doctest] +# note this only works under python 3 because of unicode literals +commands = + python -m doctest README.rst + +[testenv:sphinx-doctest] +# note this only works under python 3 because of unicode literals +commands = + mkdir build/sphinx/doctest + sphinx-build -b doctest docs build/sphinx/doctest +deps = + pbr + {[testenv]deps} + +[testenv:docs] +commands = python setup.py build_sphinx + +[flake8] +max_line_length = 79 +exclude = .git,.tox,dist,docs,*egg |