Skip to content

Commit

Permalink
[Behat] Run managing catalog promotion scenarios in separation
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
lchrusciel committed Jan 13, 2022
1 parent 69b3b45 commit 468e37a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 468e37a

Please sign in to comment.