From dde11213c0ddcb15ab394fcb7ff5afb725c63cf9 Mon Sep 17 00:00:00 2001 From: linuskmr Date: Thu, 23 Dec 2021 18:09:26 +0100 Subject: [PATCH] Add requests as dependency because fastapi's TestClient needs it --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 1cda7c9..5908c04 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -23,7 +23,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pytest + pip install flake8 pytest requests if [ -f backend/requirements.txt ]; then pip install -r backend/requirements.txt; fi - name: Lint with flake8 run: |