From 08a34b718249250fb57cca6a3d3c425a4c056f29 Mon Sep 17 00:00:00 2001 From: Xevion Date: Thu, 18 Feb 2021 20:10:36 -0600 Subject: [PATCH] Install dependencies in GH Action with pipenv correctly Accidentally forgot that we're not using requirements.txt anymore. This should be the correct way of using pipenv. (?) --- .github/workflows/python-app.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 203579c..4237762 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -27,8 +27,7 @@ jobs: - name: Install dependencies run: | - # python -m pip install --upgrade pip - pipenv install -r requirements.txt + pipenv install --dev - name: Run tests run: pipenv run pytest