Update python-app.yml

This commit is contained in:
midoks 2022-06-14 01:58:07 +08:00
parent 7f227dbcef
commit 6101c6e2d0
1 changed files with 1 additions and 1 deletions

View File

@ -35,8 +35,8 @@ jobs:
if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi
- name: Start DEBUG
run: |
gunicorn -c setting.py app:app
python3 task.py &
gunicorn -b :7200 -k gevent -w 1 app:app
- name: Test with pytest
run: |
pytest