diff --git a/test/__init__.py b/test/__init__.py index 405c2d6..8b3e32a 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -10,12 +10,15 @@ # copyright notice, and modified files need to carry a notice indicating # that they have been altered from the originals. +"""Tests.""" + from collections.abc import Iterable, Sequence -from pyproject_qiskit import __version__ +from quantum_enablement import __version__ def test_version(): + """Version test.""" assert __version__ == "0.0.0" diff --git a/tox.ini b/tox.ini index d0f7cf4..f2c387c 100644 --- a/tox.ini +++ b/tox.ini @@ -48,7 +48,7 @@ commands = flake8 pyproject_qiskit test docs isort pyproject_qiskit test docs --check-only black pyproject_qiskit test docs --check - pylint pyproject_qiskit + pylint pyproject_qiskit test docs mypy -p pyproject_qiskit