From 11c7966d47632658871181f3977e0397b881635d Mon Sep 17 00:00:00 2001 From: Jason Marechal Date: Fri, 15 Nov 2024 11:28:23 +0100 Subject: [PATCH] Exclude xpress tests for cucumber --- .github/workflows/cucumber-tests/action.yml | 4 ++-- tests/end_to_end/cucumber/features/SolverE2E.feature | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cucumber-tests/action.yml b/.github/workflows/cucumber-tests/action.yml index f0099c588..16d4af3b6 100644 --- a/.github/workflows/cucumber-tests/action.yml +++ b/.github/workflows/cucumber-tests/action.yml @@ -6,9 +6,9 @@ inputs: required: false default: 'features' tags: - description: 'Tags to run (default skips tests marked @flaky)' + description: 'Tags to run (default skips tests marked @flaky or @xpress)' required: false - default: '~@flaky' + default: '~@flaky ~@xpress' mpi_path: description: "Mpi install directory" required: true diff --git a/tests/end_to_end/cucumber/features/SolverE2E.feature b/tests/end_to_end/cucumber/features/SolverE2E.feature index a9d62d34f..6dfe3713d 100644 --- a/tests/end_to_end/cucumber/features/SolverE2E.feature +++ b/tests/end_to_end/cucumber/features/SolverE2E.feature @@ -3,6 +3,7 @@ Feature: I want the same solver used across all tools So that performances and results are coherent + @short @full-launch @xpress Scenario: Given the study path is "examples/SmallTestFiveCandidatesWithWeights" And solver is "Xpress" @@ -11,6 +12,7 @@ Feature: And Simulator has been launched with solver "Xpress" And Benders has been launched with solver "Xpress" + @short @full-launch Scenario: Given the study path is "examples/SmallTestFiveCandidatesWithWeights" And solver is "Cbc"