Skip to content

Commit d61ed95

Browse files
committed
fix dependencies
1 parent 70ee310 commit d61ed95

File tree

3 files changed

+36
-43
lines changed

3 files changed

+36
-43
lines changed

.github/workflows/nightly.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,20 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v5
2727
- name: Install poetry
28-
run: |
29-
pipx install poetry
30-
echo "$HOME/.local/bin" >> $GITHUB_PATH
28+
run: pipx install poetry
3129
- uses: actions/checkout@v4
3230
- name: Setup Python
3331
uses: actions/setup-python@v5
3432
with:
3533
python-version: ${{ matrix.python }}
3634
cache: "poetry"
37-
- name: Install pytest-timeout
38-
run: poetry run pip install pytest-timeout
3935
- name: Install dependencies and library
4036
run: poetry install
37+
- name: Debug PATH
38+
run: |
39+
echo "PATH is: $PATH"
40+
which poetry || echo "poetry not found"
41+
poetry --version
4142
- name: Run Tests
4243
run: poetry run pytest -v --timeout=14400 ./${{ matrix.lib }}/${{ matrix.products }}/
4344
env:

scaleway/poetry.lock

Lines changed: 29 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scaleway/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ python = ">=3.10"
2727
scaleway-core = "*"
2828
pyrefly = ">=0.24.2,<0.27.0"
2929
vcrpy = "^7.0.0"
30+
pytest-timeout = "^2.4.0"
3031

3132
[tool.poetry.group.dev.dependencies]
3233
scaleway-core = { path = "../scaleway-core", develop = true }

0 commit comments

Comments
 (0)