diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 2d74c7a..6b1ddb4 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -30,9 +30,9 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pytest Flask requests + pip install flake8 pytest pytest-flask Flask requests if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Start app run: | - python pony.py + pytest pony.py