-
Notifications
You must be signed in to change notification settings - Fork 347
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to end the rails started process to generate simplecov coverage report #508
Comments
Any way to stop/kill the with: start process after tests ends?
|
Issue hacked with this "external" kill of the started process by cypress.io/github-actions. It should nice to have this inside the github action. Check what I have to do to solve my issue.
It should be great if we have some thing like this. A way to customize and send the stop command.
Thank you very much. |
Thanks for this! Just ran into the same thing and trying your solution now. Bumping the custom |
I'm using Cypress to do system on our Rails application and simplecov to generate the coverage report, but simplecov only generate the reports when the rails server process is terminated with sucess
exit(0).
https://github.com/cypress-io/github-action#start-server
Cypress suite test runs perfectly but in the end I didn't get the simplecov reports to be uploaded to codecov. I'm guessing this is because the "started" rails process was note terminated by the cypress github action.
e.g
Any idea how to achieve this ? Get the simplecov report in the end of the cypress github action execution?
Thanks a lot in advance.
The text was updated successfully, but these errors were encountered: