Commit 4ee99f19 by Christine Lytwynec

Merge pull request #6824 from edx/clytwynec/TE-728

Fix "No data to report" coverage errors in bok choy tests
parents f203651a 4c8ab7da
...@@ -104,4 +104,7 @@ def run_background_process(cmd, out_log=None, err_log=None, cwd=None): ...@@ -104,4 +104,7 @@ def run_background_process(cmd, out_log=None, err_log=None, cwd=None):
for child_pid in child_pids: for child_pid in child_pids:
os.kill(child_pid.pid, signal.SIGINT) os.kill(child_pid.pid, signal.SIGINT)
# Wait for process to actually finish
proc.wait()
atexit.register(exit_handler) atexit.register(exit_handler)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment