Skip to content

Commit

Permalink
Fix for unit tests (#1356)
Browse files Browse the repository at this point in the history
* Run all unit tests

* Import fake providers

* Format

* Fake providers not used in this branch

* Unused import

---------

Co-authored-by: Kevin Tian <kevin.tian@ibm.com>
  • Loading branch information
dieris and kt474 authored Jan 31, 2024
1 parent 4074347 commit 959b9ae
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
11 changes: 11 additions & 0 deletions test/qctrl/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This code is part of Qiskit.
#
# (C) Copyright IBM 2024.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
2 changes: 0 additions & 2 deletions test/qctrl/test_qctrl.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@

"""Tests for job functions using real runtime service."""

import time

from qiskit import QuantumCircuit
from qiskit.quantum_info import Statevector, hellinger_fidelity
from qiskit.providers.jobstatus import JobStatus
Expand Down
11 changes: 11 additions & 0 deletions test/unit/fake_provider/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This code is part of Qiskit.
#
# (C) Copyright IBM 2024.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
2 changes: 1 addition & 1 deletion test/unit/fake_provider/test_fake_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from qiskit.utils import optionals

from qiskit_ibm_runtime.fake_provider import FakeAthens, FakePerth
from ..ibm_test_case import IBMTestCase
from ...ibm_test_case import IBMTestCase


def get_test_circuit():
Expand Down

0 comments on commit 959b9ae

Please sign in to comment.