Skip to content

Commit 65ef8a0

Browse files
committed
fix: Trying to fix strange pylint error
Pylint is not happy and it's easier to clean the workflow than figure out what is the is the issue here.
1 parent e1a08ec commit 65ef8a0

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/pull_request_tests.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ jobs:
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131
cache: 'pip'
32-
- name: Install dependencies
33-
run: |
34-
python -m pip install --upgrade pip
35-
python -m pip install .[test]
32+
33+
- name: Install library
34+
run: python -m pip install .[test]
35+
3636
- name: Run pytest
37-
run: |
38-
python -m pytest -v --disable-warnings
37+
run: python -m pytest -v --disable-warnings

0 commit comments

Comments
 (0)