Skip to content

Commit

Permalink
Bumped requirements versions
Browse files Browse the repository at this point in the history
  • Loading branch information
heswithme committed Sep 27, 2024
1 parent f2d7797 commit 3db7ffd
Show file tree
Hide file tree
Showing 4 changed files with 160 additions and 356 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
fail-fast: false
matrix:
name:
- token
- gauge
- pools/exchange
- pools/general
Expand All @@ -51,7 +52,7 @@ jobs:

- name: Install Requirements
run: |
pip install poetry==1.5.1
pip install poetry==1.8.3
poetry config virtualenvs.in-project true
poetry install --no-interaction --without dev
Expand All @@ -60,4 +61,8 @@ jobs:
WEB3_PROVIDER_URL: ${{ secrets.WEB3_PROVIDER_URL }}
run: |
source .venv/bin/activate
pytest --numprocesses=auto tests/${{ matrix.name }}/
if [[ ${{ matrix.name }} == "pools/oracle" ]]; then
pytest --numprocesses=auto --dist=loadscope tests/${{ matrix.name }}/
else
pytest --numprocesses=auto tests/${{ matrix.name }}/
fi
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ See the [documentation](https://docs.curve.fi) for more detailed information.
Install dependencies using poetry (python ^3.10.4)

```shell
pip install poetry==1.5.1
pip install poetry==1.8.3
poetry install
```

Expand Down
Loading

0 comments on commit 3db7ffd

Please sign in to comment.