forked from common-workflow-language/cwltool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
60 lines (50 loc) · 1.04 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
48
49
50
51
52
53
54
55
56
57
58
59
60
[tox]
envlist =
py{27,33,34,35,36}-lint,
py{27,33,34,35,36}-unit,
py35-mypy{2,3},
py27-pipconflictchecker,
py27-lint-readme,
py27-pydocstyle
skipsdist = True
skip_missing_interpreters = True
[tox:travis]
2.7 = py27
3.3 = py33
3.4 = py34
3.5 = py35
3.6 = py36
[testenv]
deps =
-rrequirements.txt
py{27,33,34,35,36}-lint: flake8
commands =
py{27,33,34,35,36}-unit: python setup.py test
py{27,33,34,35,36}-lint: flake8 schema_salad setup.py
whitelist_externals =
py{27,33,34,35,36}-lint: flake8
[testenv:py35-mypy2]
commands = make mypy2
whitelist_externals = make
deps =
mypy==0.560
-rrequirements.txt
[testenv:py35-mypy3]
commands = make mypy3
whitelist_externals = make
deps =
mypy==0.560
-rrequirements.txt
[testenv:py27-pipconflictchecker]
commands = pipconflictchecker
whitelist_externals = pipconflictchecker
deps = pip-conflict-checker
[testenv:py27-lint-readme]
commands = python setup.py check -r -s
deps =
readme
[testenv:py27-pydocstyle]
commands = make diff_pydocstyle_report
deps =
pydocstyle
diff-cover