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 - name: Install dependencies
run: | run: |
# python -m pip install --upgrade pip pipenv install --dev
pipenv install -r requirements.txt
- name: Run tests - name: Run tests
run: pipenv run pytest run: pipenv run pytest