forked from opencobra/memote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
39 lines (35 loc) · 659 Bytes
/
Copy pathtox.ini
File metadata and controls
39 lines (35 loc) · 659 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
[tox]
envlist = flake8, docs, py{27,35,36}
[travis]
os =
linux: flake8, py{27,35,36}
osx: py{27,35}
python =
2.7: py27, flake8
3.5: py35, flake8
3.6: py36
[testenv]
deps =
pytest==3.6.1
pytest-raises
pytest-cov
xlwt
XlsxWriter
commands =
pytest {posargs} --cov={envsitepackagesdir}/memote
[testenv:flake8]
skip_install = True
deps=
flake8
flake8-docstrings
commands=
flake8 {toxinidir}/memote {toxinidir}/memote/suite/tests
[testenv:docs]
skip_install = True
deps=
-r{toxinidir}/docs/requirements.txt
whitelist_externals =
make
commands=
make -C {toxinidir}/docs linkcheck
make docs