mirror of
https://github.com/grafana/grafana.git
synced 2024-12-28 18:01:40 -06:00
Remove test_steps (#50396)
This commit is contained in:
parent
35ba4a6ac1
commit
63ed5367c3
@ -116,16 +116,6 @@ def get_steps(edition):
|
||||
wire_install_step(),
|
||||
yarn_install_step(),
|
||||
]
|
||||
test_steps = [
|
||||
lint_drone_step(),
|
||||
codespell_step(),
|
||||
shellcheck_step(),
|
||||
lint_backend_step(edition=edition),
|
||||
lint_frontend_step(),
|
||||
test_backend_step(edition=edition),
|
||||
test_backend_integration_step(edition=edition),
|
||||
test_frontend_step(),
|
||||
]
|
||||
build_steps = [
|
||||
trigger_test_release(),
|
||||
enterprise_downstream_step(edition=edition, ver_mode=ver_mode),
|
||||
@ -169,7 +159,7 @@ def get_steps(edition):
|
||||
windows_steps = get_windows_steps(edition=edition, ver_mode=ver_mode)
|
||||
store_steps = [store_packages_step(edition=edition, ver_mode=ver_mode),]
|
||||
|
||||
return init_steps, test_steps, build_steps, integration_test_steps, windows_steps, store_steps
|
||||
return init_steps, build_steps, integration_test_steps, windows_steps, store_steps
|
||||
|
||||
def trigger_test_release():
|
||||
return {
|
||||
@ -221,7 +211,7 @@ def main_pipelines(edition):
|
||||
],
|
||||
},
|
||||
}
|
||||
init_steps, test_steps, build_steps, integration_test_steps, windows_steps, store_steps = get_steps(edition=edition)
|
||||
init_steps, build_steps, integration_test_steps, windows_steps, store_steps = get_steps(edition=edition)
|
||||
|
||||
pipelines = [docs_pipelines(edition, ver_mode, trigger), main_test_frontend(), main_test_backend(), pipeline(
|
||||
name='main-build-e2e-publish', edition=edition, trigger=trigger, services=[],
|
||||
|
Loading…
Reference in New Issue
Block a user