From 662aa05659efc9440e976a552aca8614f4437ee8 Mon Sep 17 00:00:00 2001 From: Pavol Juhas Date: Wed, 14 Feb 2024 14:13:36 -0800 Subject: [PATCH] Temporarily error on DeprecationWarning-s so they show up in the CI --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 35a7af04740..2942c61972f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,9 @@ skip-magic-trailing-comma = true filterwarnings = [ "ignore:Matplotlib is currently using agg:UserWarning", "ignore:FigureCanvasAgg is non-interactive.*cannot be shown:UserWarning", + # temporarily expose following deprecations in the CI + "error:`np.*` is a deprecated alias:DeprecationWarning:(cirq|)", + "error:NotImplemented should not be used in a boolean context:DeprecationWarning", ] markers = [ "rigetti_integration: tests that connect to Quil compiler or QVM.",