diff --git a/.github/workflows/aqt-stable-latest.yml b/.github/workflows/aqt-stable-latest.yml index 3e2d8a6..6cef432 100644 --- a/.github/workflows/aqt-stable-latest.yml +++ b/.github/workflows/aqt-stable-latest.yml @@ -68,4 +68,5 @@ jobs: python -m pytest plugin_repo/tests --tb=short \ -W "error::pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:qml.operation.Tensor:pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" diff --git a/.github/workflows/cirq-stable-latest.yml b/.github/workflows/cirq-stable-latest.yml index cbfe90b..d4efd81 100644 --- a/.github/workflows/cirq-stable-latest.yml +++ b/.github/workflows/cirq-stable-latest.yml @@ -76,4 +76,5 @@ jobs: python -m pytest plugin_repo/tests --tb=short \ -W "error::pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:qml.operation.Tensor:pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" diff --git a/.github/workflows/ionq-stable-latest.yml b/.github/workflows/ionq-stable-latest.yml index 13f7f98..583b7b2 100644 --- a/.github/workflows/ionq-stable-latest.yml +++ b/.github/workflows/ionq-stable-latest.yml @@ -70,4 +70,5 @@ jobs: python -m pytest plugin_repo/tests --tb=short \ -W "error::pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:qml.operation.Tensor:pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" diff --git a/.github/workflows/qiskit-stable-latest.yml b/.github/workflows/qiskit-stable-latest.yml index a3d30f0..eb40d52 100644 --- a/.github/workflows/qiskit-stable-latest.yml +++ b/.github/workflows/qiskit-stable-latest.yml @@ -75,4 +75,5 @@ jobs: python -m pytest plugin_repo/tests --tb=short \ -W "error::pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:qml.operation.Tensor:pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" diff --git a/.github/workflows/qulacs-stable-latest.yml b/.github/workflows/qulacs-stable-latest.yml index 7c0475d..2931d16 100644 --- a/.github/workflows/qulacs-stable-latest.yml +++ b/.github/workflows/qulacs-stable-latest.yml @@ -71,4 +71,5 @@ jobs: python -m pytest plugin_repo/tests --tb=short \ -W "error::pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:qml.operation.Tensor:pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" diff --git a/.github/workflows/rigetti-stable-latest.yml b/.github/workflows/rigetti-stable-latest.yml index 2182010..7d46775 100644 --- a/.github/workflows/rigetti-stable-latest.yml +++ b/.github/workflows/rigetti-stable-latest.yml @@ -77,4 +77,5 @@ jobs: python -m pytest plugin_repo/tests --tb=short \ -W "error::pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitDevice:pennylane.PennyLaneDeprecationWarning" \ + -W "ignore:qml.operation.Tensor:pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning" diff --git a/workflow-template-latest.yml b/workflow-template-latest.yml index 4e9c7fb..0c0871c 100644 --- a/workflow-template-latest.yml +++ b/workflow-template-latest.yml @@ -112,5 +112,6 @@ jobs: 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" \ + -W "ignore:qml.operation.Tensor:pennylane.PennyLaneDeprecationWarning" \ -W "ignore:QubitStateVector:pennylane.PennyLaneDeprecationWarning"{% endif %}