From 772e445c721ff85ef44ed4f9a2a6578243fc9b44 Mon Sep 17 00:00:00 2001 From: Alex Pozas-Kerstjens Date: Fri, 22 Nov 2024 09:40:04 +0100 Subject: [PATCH] Add ::() to test suites Per https://github.com/pytest-dev/pytest/issues/4127 --- .github/workflows/unittest.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index 22faa3ad..2ea6b4b3 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -32,18 +32,18 @@ jobs: - name: Test with pytest run: | pytest -v \ - --deselect=test/test_pipeline.py::TestSDPOutput::test_bounds \ - --deselect=test/test_pipeline.py::TestSDPOutput::test_CHSH \ - --deselect=test/test_pipeline.py::TestSDPOutput::test_GHZ_commuting \ - --deselect=test/test_pipeline.py::TestSDPOutput::test_GHZ_NC \ - --deselect=test/test_pipeline.py::TestSDPOutput::test_instrumental \ - --deselect=test/test_pipeline.py::TestSDPOutput::test_lpi \ - --deselect=test/test_pipeline.py::TestSDPOutput::test_supports \ - --deselect=test/test_pipeline.py::TestLPOutput \ - --deselect=test/test_pipeline.py::TestInstrumental \ - --deselect=test/test_pipeline.py::TestBell \ - --deselect=test/test_pipeline.py::TestTriangle \ - --deselect=test/test_pipeline.py::TestEvans \ - --deselect=test/test_pipeline.py::TestFullNN \ - --deselect=test/test_writers.py::TestLPWriters + --deselect=test/test_pipeline.py::TestSDPOutput::()::test_bounds \ + --deselect=test/test_pipeline.py::TestSDPOutput::()::test_CHSH \ + --deselect=test/test_pipeline.py::TestSDPOutput::()::test_GHZ_commuting \ + --deselect=test/test_pipeline.py::TestSDPOutput::()::test_GHZ_NC \ + --deselect=test/test_pipeline.py::TestSDPOutput::()::test_instrumental \ + --deselect=test/test_pipeline.py::TestSDPOutput::()::test_lpi \ + --deselect=test/test_pipeline.py::TestSDPOutput::()::test_supports \ + --deselect=test/test_pipeline.py::TestLPOutput::() \ + --deselect=test/test_pipeline.py::TestInstrumental::() \ + --deselect=test/test_pipeline.py::TestBell::() \ + --deselect=test/test_pipeline.py::TestTriangle::() \ + --deselect=test/test_pipeline.py::TestEvans::() \ + --deselect=test/test_pipeline.py::TestFullNN::() \ + --deselect=test/test_writers.py::TestLPWriters::()