-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
55 lines (47 loc) · 1.05 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
49
50
51
52
53
54
55
[isort]
profile = black
known_third_party=OpenSSL, SCons, jsonrpc, twisted, zope
[pytest]
filterwarnings =
error
# Bottle
ignore:.*'cgi' is deprecated and slated for removal
[testenv]
passenv = *
usedevelop = True
deps =
black
isort
pylint
pytest
pytest-xdist
jsondiff
commands =
{envpython} --version
[testenv:lint]
commands =
{envpython} --version
pylint --rcfile=./.pylintrc ./qio
[testenv:testcore]
commands =
{envpython} --version
py.test -v --basetemp={envtmpdir} -k "not skip_ci" tests --ignore tests/test_examples.py
[testenv:testexamples]
commands =
{envpython} scripts/install_devplatforms.py
py.test -v --basetemp={envtmpdir} tests/test_examples.py
[testenv:docs]
deps =
sphinx
sphinx-rtd-theme==1.1.1
sphinx-notfound-page
sphinx-copybutton
restructuredtext-lint
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
[testenv:docslinkcheck]
deps =
sphinx
sphinx-rtd-theme
commands =
sphinx-build -W -b linkcheck docs docs/_build/html