forked from equinor/everviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
49 lines (39 loc) · 797 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
46
47
48
49
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist =
py{36,37,38}
linting
docs
formatting
[testenv]
# Install testing framework
deps = pytest
dash[testing]
pillow
# Run the tests
commands = pytest --headless
[testenv:linting]
description = Invoke pylint to lint the code
deps =
pylint
{[testenv]deps}
commands =
pylint everviz
pylint tests -d protected-access
[testenv:formatting]
description = Invoke black to format the code
deps =
black
commands =
black --check .
[testenv:docs]
description = Invoke sphinx-build to build the HTML docs
deps =
sphinx
sphinx-rtd-theme
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38