Skip to content

Commit 741ecbd

Browse files
authored
Fix #4489: Skip correct TC from blueprint upload (#4490)
1 parent d92a3b5 commit 741ecbd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/integration_tests/tests/agentless_tests/test_blueprint_upload.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -308,10 +308,6 @@ def test_blueprints_separate_delete_success(self):
308308
self.wait_for_all_executions_to_end()
309309
self.client.blueprints.delete('second')
310310

311-
@pytest.mark.skip(
312-
reason="Skipped for 7.0.5."
313-
"It is failing since 7.0.4 build."
314-
)
315311
def test_blueprints_imported_upload_success(self):
316312
self.client.blueprints.upload(
317313
resource(os.path.join('dsl', 'simple_deployment.yaml')),
@@ -322,6 +318,10 @@ def test_blueprints_imported_upload_success(self):
322318
self.client.blueprints.delete('main')
323319
self.client.blueprints.delete('imported')
324320

321+
@pytest.mark.skip(
322+
reason="Skipped for 7.0.5."
323+
"It is failing since 7.0.4 build."
324+
)
325325
def test_blueprints_imported_upload_failure(self):
326326
self.client.blueprints.upload(
327327
resource(os.path.join('dsl', 'simple_deployment.yaml')),

0 commit comments

Comments
 (0)