File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 4545 pip install .
4646 pip install -r requirements_dev.txt
4747 - name : Deploy app
48- run : docker- compose up -d --build
48+ run : docker compose up -d --build
4949 - name : Wait for app startup
5050 run : sleep 20
5151 - name : Run integration tests
Original file line number Diff line number Diff line change 1717forwarded_allow_ips = "*" # pylint: disable=invalid-name
1818
1919# Set Gunicorn bind address
20- bind = f"{ app_config .server .host } :{ app_config .server .port } "
20+ BIND = f"{ app_config .server .host } :{ app_config .server .port } "
2121
2222# Source environment variables for Gunicorn workers
2323raw_env = [
Original file line number Diff line number Diff line change 2020
2121# pylint: disable-msg=too-many-locals
2222# pylint: disable=unsubscriptable-object
23+ # pylint: disable=too-many-arguments
24+ # pylint: disable=too-many-positional-arguments
25+ # pylint: disable=unused-argument
2326@celery .task (
2427 name = "tasks.track_run_progress" ,
2528 bind = True ,
2629 ignore_result = True ,
2730 track_started = True ,
2831)
29- def task__track_task_progress ( # pylint: disable=too-many-arguments
30- self , # pylint: disable=unused-argument
32+ def task__track_task_progress (
33+ self ,
3134 worker_id : str ,
3235 remote_host : str ,
3336 remote_base_path : str ,
You can’t perform that action at this time.
0 commit comments