-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtox.ini
More file actions
49 lines (42 loc) · 781 Bytes
/
tox.ini
File metadata and controls
49 lines (42 loc) · 781 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
42
43
44
45
46
47
48
49
[tox]
envlist = py36
[testenv]
recreate = True
setenv =
PYTHONDONTWRITEBYTECODE=1
passenv =
HOME
TRAVIS
TRAVIS_JOB_ID
TRAVIS_BRANCH
deps =
coverage>=4.2
flake8
Jinja2
mock
pytest
pytest-asyncio
pytest-cov
pytest-mock
scriptworker
virtualenv
requests-mock
commands=
py.test
; py.test --cov-config .coveragerc --cov=transparencyscript --cov-report term-missing
; coverage html
flake8
[testenv:coveralls]
deps =
python-coveralls
coverage>=4.2
commands =
coveralls
[flake8]
max-line-length = 160
exclude = .ropeproject,.tox,sandbox,transparency-venv
show-source = True
[pytest]
norecursedirs = .tox .git .hg sandbox transparency-venv
python_files = test_*.py
addopts = -vv -s --color=yes