You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2020/10/16 08:42:10 UTC

[GitHub] [airflow] potiuk opened a new issue #11571: [QUARANTINE] TestSchedulerJob.test_no_orphan_process_will_be_left

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:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #11571: [QUARANTINE] TestSchedulerJob.test_no_orphan_process_will_be_left

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #11571:
URL: https://github.com/apache/airflow/issues/11571#issuecomment-709912504


   cc: @ashb 


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [airflow] potiuk closed issue #11571: [QUARANTINE] TestSchedulerJob.test_no_orphan_process_will_be_left

Posted by GitBox <gi...@apache.org>.
potiuk closed issue #11571:
URL: https://github.com/apache/airflow/issues/11571


   


----------------------------------------------------------------
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:
users@infra.apache.org