Skip to content

Commit ce4379e

Browse files
committed
chore: update python version checks.yml
1 parent f596866 commit ce4379e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- scaleway-core
1616
- scaleway
1717
- scaleway-async
18+
python-version: ['3.11', '3.12', '3.13']
1819
defaults:
1920
run:
2021
working-directory: ${{ matrix.lib }}
@@ -23,7 +24,7 @@ jobs:
2324
- name: Set up Python
2425
uses: actions/setup-python@v5
2526
with:
26-
python-version: "3.10"
27+
python-version: ${{ matrix.python-version }}
2728
- name: Install poetry
2829
run: |
2930
pip install poetry
@@ -104,7 +105,7 @@ jobs:
104105
- name: Set up Python
105106
uses: actions/setup-python@v5
106107
with:
107-
python-version: "3.10"
108+
python-version:
108109
- name: Install poetry
109110
run: |
110111
pip install poetry

scaleway/tests/test_vpc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ def test_list_private_network(self):
7373

7474
def test_get_vpc(self):
7575
vpc = self.vpcAPI.get_vpc(vpc_id=self._vpc.id, region=self.region)
76-
76+
7777
self.assertIsNotNone(vpc)
7878
self.assertEqual(self._vpc.id, vpc.id)
7979

8080
def test_update_vpc(self):
8181
vpc = self.vpcAPI.update_vpc(vpc_id=self._vpc.id, tags=tags)
82-
82+
8383
self.assertEqual(vpc.tags, tags)
8484
self.assertEqual(self._vpc.id, vpc.id)
8585

0 commit comments

Comments
 (0)