From 26564b8515d8fec01216c4ec5242b0deaa8e15e6 Mon Sep 17 00:00:00 2001 From: Guilherme Gallo Date: Tue, 23 Jan 2024 19:11:35 -0300 Subject: [PATCH] bin/ci: Don't submit jobs on integration test `test_full_yaml_log` don't need to submit job, because it would need to replicate/mock more stuff, like the first stage init, which is not necessary to reproduce issues from the raw YAML log file. Signed-off-by: Guilherme Gallo Part-of: --- .gitlab-ci/tests/test_lava_job_submitter.py | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitlab-ci/tests/test_lava_job_submitter.py b/.gitlab-ci/tests/test_lava_job_submitter.py index 945110eb1b8..6e6a520192c 100644 --- a/.gitlab-ci/tests/test_lava_job_submitter.py +++ b/.gitlab-ci/tests/test_lava_job_submitter.py @@ -386,7 +386,6 @@ def test_full_yaml_log(mock_proxy, frozen_time, lava_job_submitter): proxy.scheduler.jobs.submit = reset_logs with pytest.raises(MesaCIRetryError): time_travel_to_test_time() - lava_job_submitter.submit() retriable_follow_job(proxy, "") print(lava_job_submitter.structured_log_file.read_text())