summary refs log tree commit diff
diff options
context:
space:
mode:
authorDrew Risinger <drewrisinger@users.noreply.github.com>2022-01-12 15:00:09 -0500
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-11 10:23:04 -0800
commita0f49b74f78395b9f5828558284a2022b83858c7 (patch)
treee79118f7311df570d5e6c9293d4a6e0065b978aa
parent5fa57764e978d567936cf2db430852ddd76696d6 (diff)
downloadnixpkgs-a0f49b74f78395b9f5828558284a2022b83858c7.tar
nixpkgs-a0f49b74f78395b9f5828558284a2022b83858c7.tar.gz
nixpkgs-a0f49b74f78395b9f5828558284a2022b83858c7.tar.bz2
nixpkgs-a0f49b74f78395b9f5828558284a2022b83858c7.tar.lz
nixpkgs-a0f49b74f78395b9f5828558284a2022b83858c7.tar.xz
nixpkgs-a0f49b74f78395b9f5828558284a2022b83858c7.tar.zst
nixpkgs-a0f49b74f78395b9f5828558284a2022b83858c7.zip
python3Packages.qiskit-aer: fix build
-rw-r--r--pkgs/development/python-modules/qiskit-aer/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/qiskit-aer/default.nix b/pkgs/development/python-modules/qiskit-aer/default.nix
index 13ffac0c2f7..a40ce57d72c 100644
--- a/pkgs/development/python-modules/qiskit-aer/default.nix
+++ b/pkgs/development/python-modules/qiskit-aer/default.nix
@@ -88,9 +88,11 @@ buildPythonPackage rec {
   ];
   # Slow tests
   disabledTests = [
-    "test_clifford" # fails on cvxpy >= 1.1.15. https://github.com/Qiskit/qiskit-aer/pull/1318. Remove in future.
     "test_snapshot" # TODO: these ~30 tests fail on setup due to pytest fixture issues?
     "test_initialize_2" # TODO: simulations appear incorrect, off by >10%.
+    # These tests fail on cvxpy >= 1.1.15
+    "test_clifford"
+    "test_approx_random"
 
     # these fail for some builds. Haven't been able to reproduce error locally.
     "test_kraus_gate_noise"