Skip to content

Commit 9c0d1ac

Browse files
fix coverage on master (#677)
* change the order of dependencies installation to ensure that `urllib3` is not overwritten
1 parent 0f54001 commit 9c0d1ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ jobs:
4848
- name: Install dependencies
4949
run: |
5050
python -m pip install --upgrade pip
51-
pip install ${{ matrix.requests-version }} ${{ matrix.urllib3-version }}
5251
make install-deps
52+
pip install ${{ matrix.requests-version }} ${{ matrix.urllib3-version }}
5353
5454
- name: Run Pytest
5555
run: |

0 commit comments

Comments
 (0)