This commit is contained in:
dechert
2023-06-15 15:48:33 +02:00
parent 25564357bb
commit d5265d4e13
5 changed files with 23 additions and 34 deletions

View File

@@ -0,0 +1,10 @@
import gitlab_ci_job_finder
def test_find_jobs():
count = 20
projectid = 244
jobname = "prepare"
result = gitlab_ci_job_finder.find_jobs(count, projectid, jobname)
one_job = result[0]
assert one_job['status'] == 'success'