Skip to content

Commit f287ff7

Browse files
committed
tests: skip api-test
1 parent a0115cb commit f287ff7

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

scaleway/tests/test_test_v1.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from scaleway import Client, WaitForOptions
88
from scaleway.test.v1 import EyeColors, Human, HumanStatus, TestV1API
99

10-
1110
@unittest.skip("API test is not deploy")
1211
class TestTestV1(unittest.TestCase):
1312
def setUp(self) -> None:

scaleway/tests/test_test_v1_marshalling.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
system_random = random.SystemRandom()
2222

23-
2423
def _mock_human_raw() -> Dict[str, Any]:
2524
altitude_in_meter = system_random.randint(0, 100)
2625
created_at = utils.random_date_string(
@@ -67,8 +66,6 @@ def _mock_human() -> Human:
6766
name=utils.random_name(),
6867
project_id=str(uuid.uuid4()),
6968
)
70-
71-
7269
@unittest.skip("API test is not deploy")
7370
class TestTestV1UnmarshallingHuman(unittest.TestCase):
7471
def _assert_raw_and_unmarshalled_human(
@@ -127,7 +124,6 @@ def test_unmarshal_ListHumansResponse(self) -> None:
127124
humans[i], list_humans_response.humans[i]
128125
)
129126

130-
131127
def _mock_create_human_request() -> CreateHumanRequest:
132128
human = _mock_human()
133129

@@ -145,7 +141,6 @@ def _mock_create_human_request() -> CreateHumanRequest:
145141
organization_id=human.organization_id,
146142
)
147143

148-
149144
@unittest.skip("API test is not deploy")
150145
class TestTestV1MarshallingCreateHumanRequest(unittest.TestCase):
151146
def _assert_create_human_request_and_raw(

0 commit comments

Comments
 (0)