File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 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 }}
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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments