-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
48 lines (40 loc) · 1.19 KB
/
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
[tox]
envlist = py36, py37, mypy, pydocstyle, black
isolated_build = false
skip_missing_interpreters = true
skipsdist=True
[gh-actions]
python =
3.6: py36, pydocstyle
3.7: py37, mypy, pydocstyle, black
[testenv]
whitelist_externals = coverage
description = run the tests with pytest under {basepython}
commands = coverage run --source=hobotrackers -m pytest tests
coverage report
coverage erase
[testenv:docgen]
whitelist_externals = sphinx-build
description = generating documentation
commands = sphinx-build -b dirhtml docs/docsrc docs
[testenv:test-docs]
whitelist_externals = sphinx-build
cmd
description = generating documentation
commands = sphinx-build -b dirhtml docs/docsrc docs_test -n -T
#rm -rf docs_test
cmd /c RMDIR /Q/S docs_test
[testenv:mypy]
whitelist_externals = mypy
description = enforce typing
commands = mypy hobotrackers
[testenv:black]
whitelist_externals = black
description = enforce code style
commands = black hobotrackers --check
[pydocstyle]
ignore = D105, D212, D203, D202
[testenv:pydocstyle]
whitelist_externals = pydocstyle
description = enforce documentation style
commands = pydocstyle hobotrackers