-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
tox.ini
57 lines (52 loc) · 1.29 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tox]
envlist = flake8-py3, py26, py27, py34, py35, py36, pypy
[testenv]
basepython =
py26: {env:TOXPY26:python2.6}
py27: {env:TOXPY27:python2.7}
py34: {env:TOXPY34:python3.4}
py35: {env:TOXPY35:python3.5}
py36: {env:TOXPY36:python3.6}
pypy: {env:TOXPYPY:pypy}
deps= -r{toxinidir}/dev-requirements.txt
commands=
# Print out the python version and bitness
pip --version
python --version
python -c "import struct; print(struct.calcsize('P') * 8)"
pip install .[socks,secure]
py.test --cov urllib3 test {posargs}
setenv =
PYTHONWARNINGS=always::DeprecationWarning
passenv = CFLAGS LDFLAGS TRAVIS APPVEYOR CRYPTOGRAPHY_OSX_NO_LINK_FLAGS
[testenv:py26]
# Additional dependency on unittest2 for Python 2.6
deps=
{[testenv]deps}
unittest2
[testenv:gae]
basepython = python2.7
deps=
{[testenv]deps}
commands=
py.test test/appengine {posargs}
setenv =
GAE_SDK_PATH={env:GAE_SDK_PATH:}
{[testenv]setenv}
[testenv:flake8-py3]
basepython = python3.4
deps=
flake8
commands=
flake8 --version
flake8 setup.py docs dummyserver urllib3 test
[testenv:docs]
basepython = python2.7
deps=
-r{toxinidir}/docs/requirements.txt
commands=
rm -rf {toxinidir}/docs/_build
make -C {toxinidir}/docs html
whitelist_externals=
make
rm