Tests not ran: Getting "Run finished" immediately when re-running tests
See original GitHub issueHi π
Iβm getting a weird behavior: when re-running the Github workflow including the cypress Github action, my tests are not being ran:
====================================================================================================
(Run Starting)
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Cypress: 4.0.1 β
β Browser: Chrome 81 (headless) β
β Specs: 10 found (...) β
β Params: Tag: false, Group: false, Parallel: true β
β Run URL: https://dashboard.cypress.io/projects/47f16h/runs/1333 β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
====================================================================================================
(Run Finished)
βRun finishedβ appears immediately after the test run has started. The task is then marked as successful
Iβm using Cypress 4.0.1
with the following workflow file:
name: Run E2E Tests without recording
uses: cypress-io/github-action@v1
with:
working-directory: ./ui
browser: chrome
record: true
headless: true
parallel: true
start: yarn serve-built-files
wait-on: "http://localhost:8081"
config: defaultCommandTimeout=100000,pageLoadTimeout=100000,watchForFileChanges=false,video=false
env:
NODE_ENV: "test"
CI: true
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Any idea what could be happening here?
Issue Analytics
- State:
- Created 3 years ago
- Comments:13 (6 by maintainers)
Top Results From Across the Web
Tests not running in Test Explorer - visual studio
However, the tests are not running when using the Visual Studio test explorer. The Test Explorer is showing all unit tests, but once...
Read more >All unit tests finished, but process still running
Hi,I'm having the following problem, I'm getting the above message and frequently it takes ReSharper over 10 seconds to unload after all...
Read more >Unit tests running slow - does not seem to use all cores
Then I watch it drop ultimately to 1 before completing and it almost always drops to 2 before the test run is even...
Read more >Controlling How Tests Are Run - The Rust Programming ...
When you run multiple tests, by default they run in parallel using threads, meaning they finish running faster and you get feedback quicker....
Read more >Run automated tests from test plans - Azure ... - Microsoft Learn
Automate test cases in your test plans and run them directly from ... for testers who may not be well versed with running...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
super, thank you @MaximeHeckel
Yup, we will investigate this