We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4b23b0 commit 0d9ea6dCopy full SHA for 0d9ea6d
1 file changed
.github/workflows/pytest.yml
@@ -22,11 +22,11 @@ jobs:
22
python-version: 3.9
23
- name: Install dependencies
24
run: |
25
- python -m pip install --upgrade pip && make setup-dev && pip install flake8 black pytest requests mercantile vt2geojson pandas
+ python -m pip install --upgrade pip && make setup-dev && pip install flake8 black pytest requests mercantile vt2geojson pandas pipenv
26
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
27
- name: Locally install branch's mapillary
28
29
- make build
+ make build && make local-install
30
- name: Formatting with black
31
32
make format
@@ -35,4 +35,4 @@ jobs:
35
make lint
36
- name: Test with pytest
37
38
- pip freeze && make local-install && pip freeze && make test
+ pipenv shell && make test
0 commit comments