forked from Qiskit/qiskit-ibm-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
56 lines (50 loc) · 1.04 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
56
[tox]
minversion = 2.1
envlist = py36, py37, py38, py39, lint, docs
skipsdist = True
[testenv]
usedevelop = true
install_command = pip install -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
LANGUAGE=en_US
LC_ALL=en_US.utf-8
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-dev.txt
commands =
python -m unittest -v
[testenv:lint]
deps =
pylint
doc8
commands =
pylint -rn --rcfile={toxinidir}/.pylintrc test
doc8 docs
{toxinidir}/tools/verify_headers.py qiskit test
[testenv:asv]
deps =
asv
virtualenv
commands =
asv run {posargs}
[testenv:docs]
envdir = .tox/docs
deps =
sphinx-intl
qiskit-aer
commands =
pip install -U -r requirements-dev.txt
pip install nbsphinx qiskit-sphinx-theme>=1.8.0
sphinx-build -W -b html {posargs} {toxinidir}/docs {toxinidir}/docs/_build/html
[testenv:gettext]
envdir = .tox/docs
basepython = python3
deps =
-r requirements-dev.txt
qiskit-aer
commands =
sphinx-build -W -b gettext docs/ docs/_build/gettext {posargs}
[doc8]
max-line-length=100
ignore-path=docs/_build