From cf6fb1bbccbe74f4fc76e446d75ffa8f02d0e32d Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Fri, 28 Apr 2023 00:50:29 +0300 Subject: [PATCH] python310Packages.cirq-ionq: disable deprecated tests --- pkgs/development/python-modules/cirq-ionq/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/cirq-ionq/default.nix b/pkgs/development/python-modules/cirq-ionq/default.nix index 080497441898..bf96d35b5318 100644 --- a/pkgs/development/python-modules/cirq-ionq/default.nix +++ b/pkgs/development/python-modules/cirq-ionq/default.nix @@ -31,4 +31,9 @@ buildPythonPackage rec { # No need to test the version number "cirq_ionq/_version_test.py" ]; + + disabledTests = [ + # DeprecationWarning: decompose_to_device was used but is deprecated. + "test_decompose_operation_deprecated" + ]; }