diff --git a/docs/apidocs/index.rst b/docs/apidocs/index.rst index 646768c7..d3d11574 100644 --- a/docs/apidocs/index.rst +++ b/docs/apidocs/index.rst @@ -7,5 +7,4 @@ Qiskit Research API Reference .. toctree:: :maxdepth: 1 - mzm_generation utils \ No newline at end of file diff --git a/docs/apidocs/mzm_generation.rst b/docs/apidocs/mzm_generation.rst deleted file mode 100644 index e44e58b9..00000000 --- a/docs/apidocs/mzm_generation.rst +++ /dev/null @@ -1,2 +0,0 @@ -.. automodule:: qiskit_research.mzm_generation - :members: \ No newline at end of file diff --git a/tox.ini b/tox.ini index 6dd41dc3..bb79f24b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.25 -envlist = py{38,39,310}{,-notebook}, lint, mypy, format, coverage, docs +envlist = py{38,39,310}, lint, mypy, format, coverage, docs isolated_build = True [testenv] @@ -9,31 +9,29 @@ extras = commands = pytest test/ {posargs} -[testenv:{py38-,py39-,py310-,}notebook] -extras = - dev -commands = - pytest --nbmake --nbmake-timeout=3000 {posargs} docs/ - [testenv:lint] +base_python = 3.10 extras = dev commands = pylint qiskit_research test [testenv:mypy] +base_python = 3.10 extras = dev commands = mypy --exclude=docs/_build . [testenv:format] +base_python = 3.10 extras = dev commands = black --check . [testenv:coverage] +base_python = 3.10 extras = dev commands = @@ -43,6 +41,7 @@ commands = coverage3 report --fail-under=50 [testenv:docs] +base_python = 3.10 extras = dev commands = @@ -51,4 +50,4 @@ commands = sphinx-build -b html -W {posargs} docs/ docs/_build/html [pytest] -addopts = --doctest-modules --ignore=docs/getting_started.ipynb +addopts = --doctest-modules