File tree Expand file tree Collapse file tree 1 file changed +6
-22
lines changed
Expand file tree Collapse file tree 1 file changed +6
-22
lines changed Original file line number Diff line number Diff line change 11[tox]
2- skipsdist =True
32skip_missing_interpreters =True
43envlist =
54 py27
65 py33
76 py34
87 py35
98 py36
9+ py37
1010 check
1111
1212[testenv]
13- recreate =True
14- basepython =
15- py27: {env:TOXPYTHON:python2.7}
16- py33: {env:TOXPYTHON:python3.3}
17- py34: {env:TOXPYTHON:python3.4}
18- py35: {env:TOXPYTHON:python3.5}
19- py36: {env:TOXPYTHON:python3.6}
20- check: python3.5
21- setenv =
22- PYTHONUNBUFFERED =True
23- DISTUTILS_DEBUG =
24- passenv =
25- *
13+ deps =
14+ pytest
2615commands =
27- python --version
28- python -c " import struct; print('ARCH: %d' % (struct.calcsize('P') * 8))"
29- python -c " import ctypes; print('UCS%d' % ctypes.sizeof(ctypes.c_wchar))"
30- python setup.py bdist_wheel
31- pip install --no-index --find-links =dist/ pythonnet
32- {posargs:python src\tests\runtests.py}
16+ {posargs:py.test}
3317
3418[testenv:check]
3519ignore_errors =True
20+ skip_install =True
21+ basepython =python3.5
3622deps =
37- check-manifest
3823 flake8
3924commands =
40- check-manifest {toxinidir}
4125 flake8 src setup.py
4226 python setup.py check --strict --metadata
You can’t perform that action at this time.
0 commit comments