forked from UCL/SkullBaseNavigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
45 lines (38 loc) · 983 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
37
38
39
40
41
42
43
44
45
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = py27,py36,lint
skipsdist = True
[travis]
python =
2.7: py27
3.6: py36, docs, lint
[testenv]
deps=-rrequirements-dev.txt
whitelist_externals=coverage,pip
commands = coverage erase
coverage run -a --source ./skullbasenavigation -m pytest
coverage report -m
[testenv:lint]
basepython=python3.6
deps=pylint
{[testenv]deps}
commands=pylint --rcfile=tests/pylintrc skullbasenavigation
[testenv:docs]
basepython=python3.6
changedir = doc
commands = sphinx-build -M html . build
[testenv:installer]
basepython=python3.6
commands=pyinstaller --onefile skullbasenavigation.py --noconfirm --windowed
[testenv:pip2]
basepython=python2.7
changedir=pip_test
skip_install=True
commands = pip install {posargs}
skullbasenavigation --help
[testenv:pip3]
basepython=python3.6
changedir=pip_test
skip_install=True
commands = pip install {posargs}
skullbasenavigation --help