Skip to content

Commit

Permalink
Revert "Temporarily skip broken tests (#527)" (#566)
Browse files Browse the repository at this point in the history
* Revert "Temporarily skip broken tests (#527)"

This reverts commit dc5e19e.

* copyright

* copyright

* Trigger CI with run_slow

Co-authored-by: Max Rossmannek <oss@zurich.ibm.com>
  • Loading branch information
Cryoris and mrossinek authored Feb 18, 2022
1 parent 218c7f9 commit 47eabdb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,6 @@ def test_vqe_mes_jw(self):

def test_vqe_mes_jw_auto(self):
"""Test VQEUCCSDFactory with QEOM + Jordan Wigner mapping + auto symmetry"""
self.skipTest(
"Temporarily skip test until the changes done by "
"https://github.com/Qiskit/qiskit-terra/pull/7551 are handled properly."
)
converter = QubitConverter(JordanWignerMapper(), z2symmetry_reduction="auto")
self._solve_with_vqe_mes(converter)

Expand All @@ -101,28 +97,16 @@ def test_vqe_mes_parity(self):

def test_vqe_mes_parity_2q(self):
"""Test VQEUCCSDFactory with QEOM + Parity mapping + reduction"""
self.skipTest(
"Temporarily skip test until the changes done by "
"https://github.com/Qiskit/qiskit-terra/pull/7551 are handled properly."
)
converter = QubitConverter(ParityMapper(), two_qubit_reduction=True)
self._solve_with_vqe_mes(converter)

def test_vqe_mes_parity_auto(self):
"""Test VQEUCCSDFactory with QEOM + Parity mapping + auto symmetry"""
self.skipTest(
"Temporarily skip test until the changes done by "
"https://github.com/Qiskit/qiskit-terra/pull/7551 are handled properly."
)
converter = QubitConverter(ParityMapper(), z2symmetry_reduction="auto")
self._solve_with_vqe_mes(converter)

def test_vqe_mes_parity_2q_auto(self):
"""Test VQEUCCSDFactory with QEOM + Parity mapping + reduction + auto symmetry"""
self.skipTest(
"Temporarily skip test until the changes done by "
"https://github.com/Qiskit/qiskit-terra/pull/7551 are handled properly."
)
converter = QubitConverter(
ParityMapper(), two_qubit_reduction=True, z2symmetry_reduction="auto"
)
Expand All @@ -135,10 +119,6 @@ def test_vqe_mes_bk(self):

def test_vqe_mes_bk_auto(self):
"""Test VQEUCCSDFactory with QEOM + Bravyi-Kitaev mapping + auto symmetry"""
self.skipTest(
"Temporarily skip test until the changes done by "
"https://github.com/Qiskit/qiskit-terra/pull/7551 are handled properly."
)
converter = QubitConverter(BravyiKitaevMapper(), z2symmetry_reduction="auto")
self._solve_with_vqe_mes(converter)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,6 @@ def setUp(self):
@slow_test
def test_uccsd_hf_qpUCCD(self):
"""paired uccd test"""
self.skipTest(
"Temporarily skip test until the changes done by "
"https://github.com/Qiskit/qiskit-terra/pull/7551 are handled properly."
)
optimizer = SLSQP(maxiter=100)

initial_state = HartreeFock(
Expand Down Expand Up @@ -119,10 +115,6 @@ def test_uccsd_hf_qpUCCD(self):
@slow_test
def test_uccsd_hf_qUCCD0(self):
"""singlet uccd test"""
self.skipTest(
"Temporarily skip test until the changes done by "
"https://github.com/Qiskit/qiskit-terra/pull/7551 are handled properly."
)
optimizer = SLSQP(maxiter=100)

initial_state = HartreeFock(
Expand Down

0 comments on commit 47eabdb

Please sign in to comment.