potiuk opened a new issue #11571: URL: https://github.com/apache/airflow/issues/11571
This tests fails occasionally on mysql at least: https://github.com/apache/airflow/pull/11555/checks?check_run_id=1260840314#step:9:1125 ``` =================================== FAILURES =================================== _____________ TestSchedulerJob.test_no_orphan_process_will_be_left _____________ self = <tests.jobs.test_scheduler_job.TestSchedulerJob testMethod=test_no_orphan_process_will_be_left> def test_no_orphan_process_will_be_left(self): empty_dir = mkdtemp() current_process = psutil.Process() old_children = current_process.children(recursive=True) scheduler = SchedulerJob(subdir=empty_dir, num_runs=1, executor=MockExecutor(do_update=False)) scheduler.run() shutil.rmtree(empty_dir) # Remove potential noise created by previous tests. current_children = set(current_process.children(recursive=True)) - set( old_children) > self.assertFalse(current_children) E AssertionError: {psutil.Process(pid=3474, name='/usr/local/bin/', status='running', started='19:26:22')} is not false tests/jobs/test_scheduler_job.py:871: AssertionError ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
