Skip to content

Commit

Permalink
Skip tests (#1197)
Browse files Browse the repository at this point in the history
  • Loading branch information
kt474 authored Nov 6, 2023
1 parent 1a5c215 commit f751ffc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/unit/test_data_serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import subprocess
import tempfile
import warnings
from unittest import skip
from datetime import datetime

import numpy as np
Expand Down Expand Up @@ -91,6 +92,7 @@ def test_coder_qc(self):
decoded = [decoded]
self.assertTrue(all(isinstance(item, QuantumCircuit) for item in decoded))

@skip("Skip until qiskit-ibm-provider/736 is merged")
def test_coder_operators(self):
"""Test runtime encoder and decoder for operators."""

Expand Down Expand Up @@ -165,6 +167,7 @@ def test_encoder_ndarray(self):
decoded = json.loads(encoded, cls=RuntimeDecoder)
self.assertTrue(np.array_equal(decoded["ndarray"], obj["ndarray"]))

@skip("Skip until qiskit-ibm-provider/736 is merged")
def test_encoder_instruction(self):
"""Test encoding and decoding instructions"""
subtests = (
Expand Down

0 comments on commit f751ffc

Please sign in to comment.