forked from wechatpy/wechatpy
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtox.ini
More file actions
42 lines (33 loc) · 762 Bytes
/
Copy pathtox.ini
File metadata and controls
42 lines (33 loc) · 762 Bytes
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
[tox]
envlist = {py3.5,py3.6,py3.7,py3.8}-{cryptography,pycrypto}
requires = tox-venv
pip >= 19.0.0
more_itertools < 6.0.0
[testenv]
usedevelop = True
basepython =
py3.5: python3.5
py3.6: python3.6
py3.7: python3.7
py3.8: python3.8
deps =
setuptools >= 41.0.0
-rdev-requirements.txt
commands =
pytest --cov --cov-report=term --cov-report=xml
[testenv:py3.5-cryptography]
extras=cryptography
[testenv:py3.5-pycrypto]
extras=pycrypto
[testenv:py3.6-cryptography]
extras=cryptography
[testenv:py3.6-pycrypto]
extras=pycrypto
[testenv:py3.7-cryptography]
extras=cryptography
[testenv:py3.7-pycrypto]
extras=pycrypto
[testenv:py3.8-cryptography]
extras=cryptography
[testenv:py3.8-pycrypto]
extras=pycrypto