forked from spotify/chartify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
37 lines (29 loc) · 789 Bytes
/
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
[tox]
envlist = py36, py35
skipsdist = True
usedevelop = True
[travis]
python =
3.6: py36
3.5: py35
[testenv]
setenv =
PYTHONPATH = {toxinidir}
deps =
-r{toxinidir}/requirements_dev.txt
commands =
flake8 {posargs}
coverage erase
py.test {posargs}
coverage-badge -f -o docs/_static/coverage.svg
; If you want to make tox run the tests with the same versions, create a
; requirements.txt with the pinned versions and uncomment the following lines:
; deps =
; -r{toxinidir}/requirements.txt
[flake8]
show-source = true
max-line-length = 80
exclude = .venv,.tox,.git,dist,docs,*.egg,build,scratch.py,examples.py,chartify/__init__.py
[pytest]
addopts = -v --cov=chartify --cov-report=html --cov-report=xml --cov-report=term-missing
testpaths = tests