File tree Expand file tree Collapse file tree 1 file changed +6
-20
lines changed Expand file tree Collapse file tree 1 file changed +6
-20
lines changed Original file line number Diff line number Diff line change 1
1
[tox]
2
- skipsdist =True
3
2
skip_missing_interpreters =True
4
3
envlist =
5
4
py27
6
5
py33
7
6
py34
8
7
py35
9
8
py36
9
+ py37
10
10
check
11
11
12
12
[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
26
15
commands =
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}
33
17
34
18
[testenv:check]
35
19
ignore_errors =True
20
+ skip_install =True
21
+ basepython =python3.5
36
22
deps =
37
23
check-manifest
38
24
flake8
You can’t perform that action at this time.
0 commit comments