Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,16 @@ jobs:
- instance
- k8s
- vpc
lib:
- scaleway
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ matrix.lib }}
steps:
- uses: actions/checkout@v5
- name: Install poetry
run: pipx install poetry
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
Expand All @@ -27,7 +35,7 @@ jobs:
- name: Install dependencies and library
run: poetry install
- name: Run Tests
run: poetry run pytest -v ./internal/namespaces/${{ matrix.products }}/tests/... -timeout=4h
run: poetry run pytest -v --timeout=14400 ./${{ matrix.lib }}/${{ matrix.products }}/
env:
PYTHON_UPDATE_CASSETTES: true
SCW_ACCESS_KEY: ${{ secrets.SCW_ACCESS_KEY }}
Expand Down
67 changes: 29 additions & 38 deletions scaleway/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions scaleway/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ python = ">=3.10"
scaleway-core = "*"
pyrefly = ">=0.24.2,<0.32.0"
vcrpy = "^7.0.0"
pytest-timeout = "^2.4.0"

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