Skip to content

Commit

Permalink
feat: install with uv in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wakamex committed Apr 15, 2024
1 parent 73a1fd9 commit 87d8cdf
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install --pre .[lint]
python -m pip install --upgrade uv
uv pip install .[lint]
- name: Run Black
run: black --check .
Expand All @@ -51,8 +51,8 @@ jobs:

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install --pre .[lint,test]
python -m pip install --upgrade uv
uv pip install .[lint,test]
- name: Run MyPy
run: mypy .
Expand Down Expand Up @@ -90,9 +90,9 @@ jobs:

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip uninstall eth-ape --yes
pip install --pre .[test]
python -m pip install --upgrade uv
uv pip uninstall eth-ape --yes
uv pip install .[test]
- name: Run Tests
run: pytest -m "not fuzzing" -s --cov=src -n auto --dist loadgroup
Expand All @@ -113,8 +113,8 @@ jobs:

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install --pre .[test]
python -m pip install --upgrade uv
uv pip install --pre .[test]
- name: Run Tests
run: pytest -m "fuzzing" --no-cov -s

0 comments on commit 87d8cdf

Please sign in to comment.