You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ci/praktika/job.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ def parametrize(
92
92
==len(timeout)
93
93
==len(provides)
94
94
==len(requires)
95
-
), f"Parametrization lists must be of the same size [{len(parameter)}, {len(runs_on)}, {len(timeout)}, {len(provides)}, {len(requires)}]"
95
+
), f"Parametrization lists for job [{self.name}] must be of the same size [{len(parameter)}, {len(runs_on)}, {len(timeout)}, {len(provides)}, {len(requires)}]"
Copy file name to clipboardExpand all lines: ci/praktika/validator.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ def validate(cls):
56
56
forjobinworkflow.jobs:
57
57
cls.evaluate_check(
58
58
isinstance(job, Job.Config),
59
-
f"Invalid job type [{job}]",
59
+
f"Invalid job type [{job}]: type [{type(job)}]",
60
60
workflow.name,
61
61
)
62
62
@@ -158,7 +158,7 @@ def validate(cls):
158
158
artifact.is_s3_artifact()
159
159
), f"All artifacts must be of S3 type if enable_cache|enable_html=True, artifact [{artifact.name}], type [{artifact.type}], workflow [{workflow.name}]"
0 commit comments