ramitkataria commented on code in PR #56006:
URL: https://github.com/apache/airflow/pull/56006#discussion_r2373011425
##########
providers/celery/tests/unit/celery/executors/test_celery_executor.py:
##########
@@ -126,6 +126,17 @@ def test_supports_sentry(self):
def test_cli_commands_vended(self):
assert CeleryExecutor.get_cli_commands()
+ def test_celery_executor_init_with_args_kwargs(self):
Review Comment:
I guess we should add something like this here so this test doesn't run on
older versions:
```suggestion
@pytest.mark.skipif(not AIRFLOW_V_3_1_PLUS, reason="Multi-team support
was added to Celery constructor in 3.1.0")
def test_celery_executor_init_with_args_kwargs(self):
```
--
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]