Jaypore CI

> Jaypore CI: Minimal, Offline, Local CI system.
Log | Files | Refs | README

commit 0a842e54ae1360566a6ac5da039e8c6e3c8c9159
parent a7c14b0de54593b78ea482aa3e03542dc59d394a
Author: arjoonn sharma <arjoonn@midpathsoftware.com>
Date:   Thu, 22 Dec 2022 09:21:40 +0530

use job kwargs separately

Diffstat:
Mjaypore_ci/jci.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/jaypore_ci/jci.py b/jaypore_ci/jci.py @@ -341,9 +341,9 @@ flowchart {self.graph_direction} """ depends_on = [] if depends_on is None else depends_on assert name not in self.jobs - kwargs = dict(self.pipe_kwargs) + kwargs, job_kwargs = dict(self.pipe_kwargs), kwargs kwargs.update(self.stage_kwargs if self.stage_kwargs is not None else {}) - kwargs.update(kwargs) + kwargs.update(job_kwargs) if not kwargs.get("is_service"): assert command job = Job(