ephraimbuddy commented on a change in pull request #17945:
URL: https://github.com/apache/airflow/pull/17945#discussion_r700980444



##########
File path: tests/jobs/test_scheduler_job.py
##########
@@ -2881,6 +2881,44 @@ def 
test_do_schedule_max_active_runs_and_manual_trigger(self, dag_maker):
         # Assert that the other one is queued
         assert len(DagRun.find(dag_id=dag.dag_id, state=State.QUEUED, 
session=session)) == 1
 
+    def 
test_max_active_runs_in_a_dag_doesnt_stop_running_dagruns_in_otherdags(self, 
dag_maker):
+        session = settings.Session()
+        with dag_maker('test_dag1', max_active_runs=1) as dag:
+            DummyOperator(task_id='mytask')
+        # dag_maker.create_dagrun()

Review comment:
       ```suggestion
   ```




-- 
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]


Reply via email to