forked from qiskit-community/qiskit-dynamics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
54 lines (47 loc) · 1.16 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
[tox]
minversion = 3.3.0
envlist = py39,py310,py311,py312,lint
isolated_build = true
[testenv]
usedevelop = True
install_command = pip install -c{toxinidir}/constraints.txt -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
QISKIT_SUPPRESS_PACKAGING_WARNINGS=Y
deps = -r{toxinidir}/requirements-dev.txt
commands = stestr run {posargs}
[testenv:jax]
deps =
-r{toxinidir}/requirements-dev.txt
jax
jaxlib
diffrax
[testenv:lint]
deps =
-r{toxinidir}/requirements-dev.txt
jax
jaxlib
diffrax
commands =
black --check {posargs} qiskit_dynamics test
pylint -rn -j 0 --rcfile={toxinidir}/.pylintrc qiskit_dynamics/ test/
[testenv:black]
deps = black
commands = black {posargs} qiskit_dynamics test
[testenv:docs]
# Editable mode breaks macOS: https://github.com/sphinx-doc/sphinx/issues/10943
usedevelop = False
deps =
-r{toxinidir}/requirements-dev.txt
jax
jaxlib
diffrax
setenv =
PYDEVD_DISABLE_FILE_VALIDATION = 1
commands =
sphinx-build -W -T --keep-going {posargs} docs/ docs/_build/html
[testenv:docs-clean]
skip_install = true
deps =
allowlist_externals = rm
commands = rm -rf {toxinidir}/docs/stubs/ {toxinidir}/docs/_build