diff --git a/.github/workflows/aqt-stable-latest.yml b/.github/workflows/aqt-stable-latest.yml index 74a567d..3e2d8a6 100644 --- a/.github/workflows/aqt-stable-latest.yml +++ b/.github/workflows/aqt-stable-latest.yml @@ -67,4 +67,5 @@ jobs: run: | python -m pytest plugin_repo/tests --tb=short \ -W "error::pennylane.PennyLaneDeprecationWarning" \ - -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" + -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" diff --git a/.github/workflows/cirq-stable-latest.yml b/.github/workflows/cirq-stable-latest.yml index 0a97e41..cbfe90b 100644 --- a/.github/workflows/cirq-stable-latest.yml +++ b/.github/workflows/cirq-stable-latest.yml @@ -75,4 +75,5 @@ jobs: run: | python -m pytest plugin_repo/tests --tb=short \ -W "error::pennylane.PennyLaneDeprecationWarning" \ - -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" + -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" diff --git a/.github/workflows/ionq-stable-latest.yml b/.github/workflows/ionq-stable-latest.yml index 0bb0449..13f7f98 100644 --- a/.github/workflows/ionq-stable-latest.yml +++ b/.github/workflows/ionq-stable-latest.yml @@ -69,4 +69,5 @@ jobs: run: | python -m pytest plugin_repo/tests --tb=short \ -W "error::pennylane.PennyLaneDeprecationWarning" \ - -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" + -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" diff --git a/.github/workflows/qiskit-stable-latest.yml b/.github/workflows/qiskit-stable-latest.yml index 00cf961..a3d30f0 100644 --- a/.github/workflows/qiskit-stable-latest.yml +++ b/.github/workflows/qiskit-stable-latest.yml @@ -74,4 +74,5 @@ jobs: run: | python -m pytest plugin_repo/tests --tb=short \ -W "error::pennylane.PennyLaneDeprecationWarning" \ - -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" + -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" diff --git a/.github/workflows/qulacs-stable-latest.yml b/.github/workflows/qulacs-stable-latest.yml index 4fd44c2..7c0475d 100644 --- a/.github/workflows/qulacs-stable-latest.yml +++ b/.github/workflows/qulacs-stable-latest.yml @@ -70,4 +70,5 @@ jobs: run: | python -m pytest plugin_repo/tests --tb=short \ -W "error::pennylane.PennyLaneDeprecationWarning" \ - -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" + -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" diff --git a/.github/workflows/rigetti-stable-latest.yml b/.github/workflows/rigetti-stable-latest.yml index 5150a18..2182010 100644 --- a/.github/workflows/rigetti-stable-latest.yml +++ b/.github/workflows/rigetti-stable-latest.yml @@ -76,4 +76,5 @@ jobs: run: | python -m pytest plugin_repo/tests --tb=short \ -W "error::pennylane.PennyLaneDeprecationWarning" \ - -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" + -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" diff --git a/workflow-template-latest.yml b/workflow-template-latest.yml index b7fc4df..4e9c7fb 100644 --- a/workflow-template-latest.yml +++ b/workflow-template-latest.yml @@ -111,5 +111,6 @@ jobs: run: | python -m pytest plugin_repo/{{ tests_loc }} --tb=short {%- for kwarg in test_kwargs %} {{ kwarg }}{%- endfor %}{% if no_deprecation_error %}{% else %} \ -W "error::pennylane.PennyLaneDeprecationWarning"{% endif %}{% if latest or no_deprecation_error %}{% else %} \ - -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning"{% endif %} + -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning"{% endif %}