Set location for pipenv test

This commit is contained in:
Vladimir Safonkin 2022-04-03 20:11:50 +02:00
parent 1ca445cb86
commit 9156f8336f

View file

@ -50,7 +50,9 @@ jobs:
- name: Install pipenv - name: Install pipenv
run: pipx install pipenv run: pipx install pipenv
- name: Install dependencies - name: Install dependencies
run: pipenv install requests run: |
cd __tests__/data
pipenv install requests
python-poetry-dependencies-caching: python-poetry-dependencies-caching:
name: Test poetry (Python ${{ matrix.python-version}}, ${{ matrix.os }}) name: Test poetry (Python ${{ matrix.python-version}}, ${{ matrix.os }})
@ -112,4 +114,6 @@ jobs:
- name: Install pipenv - name: Install pipenv
run: pipx install pipenv run: pipx install pipenv
- name: Install dependencies - name: Install dependencies
run: pipenv install numpy run: |
cd __tests__/data
pipenv install requests