Update python-app.yml

This commit is contained in:
midoks 2022-06-14 01:46:19 +08:00
parent 0bd96563f1
commit 633cab5822
1 changed files with 2 additions and 2 deletions

View File

@ -32,11 +32,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Start DEBUG
run: |
./cli.sh debug
python3 task.py &
gunicorn -b :7200 -k gevent -w 1 app:app
- name: Test with pytest
run: |
pytest