-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtox.ini
More file actions
39 lines (32 loc) · 835 Bytes
/
tox.ini
File metadata and controls
39 lines (32 loc) · 835 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
[tox]
envlist = py34
skipsdist = true
[testenv]
deps =
-rrequirements.txt
# test / quality dependencies
bravado==8.4.0
bravado-falcon==0.0.1
# coverage_pth has to install before coverage
coverage_pth==0.0.1
coverage==4.2.0
docker-py
mountepy==0.4.0
pylint
pytest
pytest-falcon==0.4.2
responses
# additional tools
pipdeptree
bumpversion
whitelist_externals =
/bin/bash
setenv =
COVERAGE_PROCESS_START = {toxinidir}/.coveragerc
commands =
/bin/bash -c "pylint data_acquisition --rcfile=.pylintrc" || echo "Fix Pylint issues! Or disable them if you're absolutely sure that's the right thing to do."
# so that we properly detect lines that lost coverage
coverage erase
coverage run -m py.test tests/
coverage combine
coverage report -m