ashb commented on a change in pull request #4207: [AIRFLOW-3367] Run celery 
integration test with redis broker.
URL: https://github.com/apache/incubator-airflow/pull/4207#discussion_r236310260
 
 

 ##########
 File path: tests/executors/test_celery_executor.py
 ##########
 @@ -16,13 +16,20 @@
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
 # under the License.
+import os
 import sys
 import unittest
 import mock
+
+from celery import Celery
 from celery.contrib.testing.worker import start_worker
+from kombu.asynchronous import set_event_loop
+from parameterized import parameterized
 
-from airflow.executors.celery_executor import CeleryExecutor
 from airflow.executors.celery_executor import app
+from airflow.executors.celery_executor import CeleryExecutor
+from airflow.executors.celery_executor import execute_command
+from airflow.executors.celery_executor import celery_configuration
 from airflow.executors.celery_executor import CELERY_FETCH_ERR_MSG_HEADER
 
 Review comment:
   ```python
   from airflow.executors.celery_executor import (
       CELERY_FETCH_ERR_MSG_HEADER,
       CeleryExecutor
       app,
       celery_configuration,
       execute_command,
   )
   ```
   
   please :)

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to