CI: Remove initialize step from integration tests pipeline (#43663)

* Remove initialize step from integration tests

* Remove initialize step from integration tests on main pipelines
This commit is contained in:
Dimitris Sotirakis
2022-01-04 14:17:20 +01:00
committed by GitHub
parent df4e9ca12b
commit e3baa24946
3 changed files with 4 additions and 24 deletions
+2 -2
View File
@@ -98,7 +98,7 @@ def get_steps(edition, is_downstream=False):
# Insert remaining steps
build_steps.extend([
package_step(edition=edition, ver_mode=ver_mode, include_enterprise2=include_enterprise2, is_downstream=is_downstream),
package_step(edition=edition, ver_mode=ver_mode, include_enterprise2=include_enterprise2, is_downstream=is_downstream),
e2e_tests_server_step(edition=edition),
e2e_tests_step('dashboards-suite', edition=edition),
e2e_tests_step('smoke-tests-suite', edition=edition),
@@ -180,7 +180,7 @@ def main_pipelines(edition):
),
pipeline(
name='main-integration-tests', edition=edition, trigger=trigger, services=services,
steps=[download_grabpl_step()] + initialize_step(edition, platform='linux', ver_mode=ver_mode) + integration_test_steps,
steps=[download_grabpl_step()] + integration_test_steps,
volumes=volumes,
),
pipeline(
+1 -1
View File
@@ -128,7 +128,7 @@ def pr_pipelines(edition):
+ build_steps,
), pipeline(
name='pr-integration-tests', edition=edition, trigger=trigger, services=services,
steps=[download_grabpl_step()] + initialize_step(edition, platform='linux', ver_mode=ver_mode) + integration_test_steps,
steps=[download_grabpl_step()] + integration_test_steps,
volumes=volumes,
),
]