forked from GregBowyer/cld2-cffi
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtox.ini
More file actions
41 lines (36 loc) · 734 Bytes
/
Copy pathtox.ini
File metadata and controls
41 lines (36 loc) · 734 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
[tox]
envlist = py27,pypy,py32,py33,py34,py35,pypy3
skip_missing_interpreters = true
[testenv]
basepython =
py27: python2.7
py33: python3.3
py34: python3.4
py35: python3.5
pypy: pypy
py2: python2.7
py3: python3.5
setenv =
PYTHONPATH = {toxinidir}
deps =
cffi
bumpversion
coverage
pytest
hypothesis
hypothesis-pytest
ipdb
prospector[with_everything]
commands =
prospector -i .tox --strictness veryhigh cld2
py.test --junitxml=junit-jenkins-2.7.xml -s tests/
coverage run --branch --source cld2 -m py.test tests/
coverage combine
coverage report --fail-under 80 --include=* -m
[pytest]
norecursedirs =
.git
.tox
dist
build
env