npx cypress-cloud run --record --key aaa --parallel --ci-build-id $CI_PIPELINE_ID --env allure=true,configFile=preprod,TAGS=\"not @ignore and not @teststeardown\" --browser chrome
npx cypress-cloud run --ci-build-id $CI_PIPELINE_ID --env allure=false,configFile=preprod,TAGS=\"@teststeardown\" --browser chrome
The problem is that second command is skipped because for cypress-cloud, the tagged test with @teststeardown are already "run" (or skipped) on the previous call, so they are not launched but I need them to be specifically launched AFTER the first run.
If I change the order, this time, the @teststeardown tags should be launch but the step is just skipped.
Expected behavior
When a test is tagged to be not run, just don't put it to ignore case (except if tagged ignore).
Command and Setup
I use sorry-cypress provider.
The commands are shown before.
Full log and debug output
```
No error logs.
```
Just the stage is skipped :
![image](https://github.com/currents-dev/cypress-cloud/assets/22171928/0c7d6cb5-cd0b-4501-b9af-269ff8031545)
Before opening, please confirm:
Environment information
Describe the bug
In my GitLab CI, I run 2 commands :
npx cypress-cloud run --record --key aaa --parallel --ci-build-id $CI_PIPELINE_ID --env allure=true,configFile=preprod,TAGS=\"not @ignore and not @teststeardown\" --browser chrome
npx cypress-cloud run --ci-build-id $CI_PIPELINE_ID --env allure=false,configFile=preprod,TAGS=\"@teststeardown\" --browser chrome
The problem is that second command is skipped because for
cypress-cloud
, the tagged test with@teststeardown
are already "run" (or skipped) on the previous call, so they are not launched but I need them to be specifically launched AFTER the first run.If I change the order, this time, the
@teststeardown
tags should be launch but the step is just skipped.Expected behavior
When a test is tagged to be not run, just don't put it to ignore case (except if tagged ignore).
Command and Setup
I use sorry-cypress provider. The commands are shown before.
Full log and debug output