ci/lava: Fix pytest not passing farm value

This was throwing an exception as a required argument was missing.

Signed-off-by: Daniel Stone <daniels@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30978>
This commit is contained in:
Daniel Stone 2024-09-02 11:47:04 +01:00 committed by Marge Bot
parent 1a87439518
commit 6608b5ee46
2 changed files with 2 additions and 0 deletions

View file

@ -75,6 +75,7 @@ def lava_job_submitter(
boot_method="test_boot",
ci_project_dir="test_dir",
device_type="test_device",
farm="test_farm",
job_timeout_min=1,
structured_log_file=tmp_file,
)

View file

@ -56,6 +56,7 @@ def job_submitter_factory(mode: Literal["UBOOT", "FASTBOOT"], shell_file):
boot_method=boot_method,
ci_project_dir="/ci/project/dir",
device_type=device_type,
farm="test_farm",
dtb_filename="my_dtb_filename",
first_stage_init=shell_file,
job_timeout_min=job_timeout_min,