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. (?)
This commit is contained in:
2021-02-18 20:10:36 -06:00
committed by GitHub
parent 4dafbe6ac1
commit 08a34b7182

View File

@@ -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