This commit is contained in:
dechert
2026-02-26 14:12:29 +01:00
parent d5265d4e13
commit b830b3a640
3 changed files with 68 additions and 2 deletions

View File

@@ -8,3 +8,12 @@ def test_find_jobs():
result = gitlab_ci_job_finder.find_jobs(count, projectid, jobname)
one_job = result[0]
assert one_job['status'] == 'success'
def test_find_pipelines():
count = 500
projectid = 244
jobname = "prepare"
result = gitlab_ci_job_finder.find_pipelines(count, projectid, jobname)
# one_job = result[0]
assert result is not None