Run codespell only on docs changes (#55064)

This commit is contained in:
Dimitris Sotirakis
2022-09-14 16:32:08 +03:00
committed by GitHub
parent 896eeb65a9
commit 8b38f9408d
3 changed files with 1 additions and 77 deletions

View File

@@ -12,7 +12,6 @@ load(
'publish_image',
'lint_backend_step',
'lint_frontend_step',
'codespell_step',
'test_backend_step',
'test_backend_integration_step',
'test_frontend_step',
@@ -171,7 +170,6 @@ def get_steps(edition, ver_mode):
test_steps = []
test_steps.extend([
codespell_step(),
lint_backend_step(edition=edition),
lint_frontend_step(),
test_backend_step(edition=edition),

View File

@@ -3,7 +3,6 @@ load(
'identify_runner_step',
'download_grabpl_step',
'wire_install_step',
'codespell_step',
'lint_backend_step',
'lint_drone_step',
'test_backend_step',
@@ -26,7 +25,6 @@ def test_backend(trigger, ver_mode):
wire_install_step(),
]
test_steps = [
codespell_step(),
lint_backend_step(edition="oss"),
test_backend_step(edition="oss"),
test_backend_integration_step(edition="oss"),