From 468e37ac7d2a6813457fe5df9579268d445c31cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Chru=C5=9Bciel?= Date: Thu, 13 Jan 2022 09:15:42 +0100 Subject: [PATCH] [Behat] Run managing catalog promotion scenarios in separation This change was the simplest scenario for single scecnario failing. This scenario was failing only in UI context(while working fine in API). The problem didn't exist when scenarios where run locally or just in separate step of GitHub Action. Instead of commiting more time for the investigation, I've decided to split the execution. --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7d40b20b42..cdd2f17e96 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -164,9 +164,13 @@ jobs: name: Run PHPUnit run: vendor/bin/phpunit --colors=always + - + name: Run managing catalog promotion scenarios + run: vendor/bin/behat --colors --strict --no-interaction -vvv -f progress --tags="~@javascript&&~@todo&&~@cli&&@managing_catalog_promotions" + - - name: Run non-JS Behat - run: vendor/bin/behat --colors --strict --no-interaction -vvv -f progress --tags="~@javascript&&~@todo&&~@cli" + name: Run non-JS Behat (without managing catalog promotion scenarios) + run: vendor/bin/behat --colors --strict --no-interaction -vvv -f progress --tags="~@javascript&&~@todo&&~@cli&&@~managing_catalog_promotions" - name: Run JS Behat