CI: Allow selecting particular tests for CI

Normally the job itself controls which tests are run, by providing an
optional test spec and using the -k option.

It is sometimes useful to run a subset of tests on CI. Add a new
TEST_SPEC variable to control this.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2025-08-03 00:05:47 +12:00
parent d62dfb382c
commit f8e55a7a2d
2 changed files with 14 additions and 1 deletions

View File

@@ -117,6 +117,12 @@ WORLD_BUILD
git push ci -o ci.variable=WORLD_BUILD=0
TEST_SPEC
Set to the test spec to use when running a test.py tests. This overrides
the spec provided by the job. For example::
git push ci -o ci.variable=TEST_SPEC=bootstd
Using the lab
-------------