ashb commented on code in PR #58365:
URL: https://github.com/apache/airflow/pull/58365#discussion_r2560058499
##########
airflow-core/tests/unit/executors/test_local_executor.py:
##########
@@ -158,16 +173,73 @@ def test_clean_stop_on_signal(self):
executor = LocalExecutor(parallelism=2)
executor.start()
- # We want to ensure we start a worker process, as we now only create
them on demand
- executor._spawn_worker()
-
try:
os.kill(os.getpid(), signal.SIGINT)
except KeyboardInterrupt:
pass
finally:
executor.end()
+ @skip_spawn_mp_start
+ def test_worker_process_revive(self):
Review Comment:
What is this test covering? A really process can never revive can it?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]