-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtox.ini
47 lines (42 loc) · 1.07 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
[tox]
envlist = py27,pypy,py32,py33,py34,pypy3
skip_missing_interpreters = true
[testenv]
basepython =
py27: python2.7
py32: python3.2
py33: python3.3
py34: python3.4
pypy: pypy
pypy3: pypy3
py2: python2.7
py3: python3.4
deps=
six
pytest
coverage
pytest-bench
pytest-xdist
hypothesis
hypothesis-pytest
prospector[with_everything]
commands=
prospector -i .tox --without-tool pep257 --without-tool mccabe --strictness high cmph
py.test tests
./check-and-dump-corefiles.sh
coverage run --source cmph -m py.test tests
coverage combine
[testenv:py32]
commands =
- prospector -i .tox --without-tool pep257 --without-tool mccabe --strictness high cmph
py.test tests
./check-and-dump-corefiles.sh
coverage run --source cmph -m py.test tests
coverage combine
[testenv:pypy3]
commands =
- prospector -i .tox --without-tool pep257 --without-tool mccabe --strictness high cmph
py.test tests
./check-and-dump-corefiles.sh
coverage run --source cmph -m py.test tests
coverage combine