File: tox.ini

package info (click to toggle)
pyopenssl 16.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,116 kB
  • ctags: 1,575
  • sloc: python: 7,405; makefile: 146
file content (81 lines) | stat: -rw-r--r-- 2,166 bytes parent folder | download
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[tox]
envlist = {pypy,py26,py27,py33,py34,py35}{,-cryptographyMaster,-cryptographyMinimum},py27-twistedMaster,pypi-readme,check-manifest,flake8,docs,coverage-report

[testenv]
whitelist_externals =
    openssl
passenv = ARCHFLAGS CFLAGS LC_ALL LDFLAGS PATH LD_LIBRARY_PATH TERM
deps =
    coverage>=4.2
    pytest>=3.0.1
    cryptographyMaster: git+https://github.com/pyca/cryptography.git
    cryptographyMinimum: cryptography<1.4
setenv =
    # Do not allow the executing environment to pollute the test environment
    # with extra packages.
    PYTHONPATH=
    PIP_NO_BINARY=cryptography
commands =
    openssl version
    coverage run --parallel -m pytest {posargs}

[testenv:py27-twistedMaster]
deps =
    # [tls,conch] syntax doesn't work here so we enumerate all dependencies.
    git+https://github.com/twisted/twisted
    idna
    service_identity
passenv = ARCHFLAGS CFLAGS LC_ALL LDFLAGS PATH LD_LIBRARY_PATH TERM
commands =
    python -c "import OpenSSL.SSL; print(OpenSSL.SSL.SSLeay_version(OpenSSL.SSL.SSLEAY_VERSION))"
    python -c "import cryptography; print(cryptography.__version__)"
    trial --reporter=text twisted

[testenv:py35-urllib3Master]
basepython=python3.5
deps =
    pyasn1
    ndg-httpsclient
passenv = ARCHFLAGS CFLAGS LC_ALL LDFLAGS PATH LD_LIBRARY_PATH TERM
whitelist_externals =
    rm
commands =
    python -c "import OpenSSL.SSL; print(OpenSSL.SSL.SSLeay_version(OpenSSL.SSL.SSLEAY_VERSION))"
    python -c "import cryptography; print(cryptography.__version__)"
    {toxinidir}/.travis/install_urllib3.sh
    nosetests urllib3/test
    rm -rf ./urllib3

[testenv:flake8]
deps =
     flake8
skip_install = true
commands =
     flake8 src tests examples setup.py

[testenv:pypi-readme]
deps =
    readme_renderer
skip_install = true
commands =
    python setup.py check -r -s

[testenv:check-manifest]
deps =
    check-manifest
skip_install = true
commands =
    check-manifest

[testenv:docs]
deps = -rdocs-requirements.txt
basepython = python2.7
commands =
     sphinx-build -W -b html doc doc/_build/html

[testenv:coverage-report]
deps = coverage>=4.2
skip_install = true
commands =
    coverage combine
    coverage report