Skip to content

Commit

Permalink
chore: update pip firsT
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Sep 10, 2024
1 parent d1fb498 commit f92861f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
python-version: "3.10"

- name: Install Dependencies
run: pip install .[lint]
run: |
python -m pip install --upgrade pip
pip install .[lint]
- name: Run Black
run: black --check .
Expand All @@ -48,7 +50,9 @@ jobs:
python-version: "3.10"

- name: Install Dependencies
run: pip install .[lint,test] # Might need test deps
run: |
python -m pip install --upgrade pip
pip install .[lint,test] # Might need test deps
- name: Run MyPy
run: mypy .
Expand All @@ -70,7 +74,9 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install Dependencies
run: pip install .[test]
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Run Tests
run: pytest -m "not fuzzing" -n 0 -s --cov
Expand Down

0 comments on commit f92861f

Please sign in to comment.