You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When gauge gets terminated, gauge python keeps running, though it doesn't keep executing specs
To Reproduce
Steps (or project) to reproduce the behavior:
Initialise a gauge project with some specs
Run gauge in a terminal
Press Ctrl+C to send SIGINT to gauge
Gauge exits, but check ps -fC python3 to see start.py and start.sh are still running.
Expected behavior
The python runner should exit cleanly. I should not have 20 start.py python3 processes running on my system after doing a few test runs.
In addition, I have some AbstractContentManager resources which need to get cleaned up after the test harness exits, whether it exits with an error or otherwise. Right now these are getting cleaned up in the @after_suite hook, so it would be nice if that could still get called on an abnormal exit. Alternatively, perhaps the test harness can help with managing and cleaning up AbstractContentManagers.
Describe the bug
When gauge gets terminated, gauge python keeps running, though it doesn't keep executing specs
To Reproduce
Steps (or project) to reproduce the behavior:
ps -fC python3
to see start.py and start.sh are still running.Expected behavior
The python runner should exit cleanly. I should not have 20 start.py python3 processes running on my system after doing a few test runs.
In addition, I have some AbstractContentManager resources which need to get cleaned up after the test harness exits, whether it exits with an error or otherwise. Right now these are getting cleaned up in the
@after_suite
hook, so it would be nice if that could still get called on an abnormal exit. Alternatively, perhaps the test harness can help with managing and cleaning up AbstractContentManagers.Versions:
The text was updated successfully, but these errors were encountered: