Beispiel #1
0
def test_exec(**kwargs):
    inputnames = ("a", "b")
    outputnames = ("c", "d")
    taskprops = TaskProperties("test_exec", "test")
    return invoke_task(taskprops, inputnames, outputnames, **kwargs)
def test_exec(**kwargs):
    inputnames=("a","b")
    outputnames=("c","d")
    taskprops=TaskProperties("test_exec", "test")
    return invoke_task(taskprops, inputnames, outputnames, **kwargs)
Beispiel #3
0
 def test_exec(**kwargs):
     inputnames = ("a", "b")
     outputnames = ("c")
     pkgsource = PackageSource("testpkg", pkgrepos)
     taskprops = TaskProperties("test_exec", pkgsource)
     return invoke_task(taskprops, inputnames, outputnames, **kwargs)
 def test_exec(**kwargs):
     inputnames=("a","b")
     outputnames=("c")
     pkgsource=PackageSource("testpkg", pkgrepos)
     taskprops=TaskProperties("test_exec", pkgsource)
     return invoke_task(taskprops, inputnames, outputnames, **kwargs)
Beispiel #5
0
 def __call__(self, **kwargs):
         inputnames=[inp.name for inp in self.inputs]
         outputnames=[out.name for out in self.outputs]
         props=TaskProperties(command=self.command, package=Package(self.pkgname))
         return invoke_task(props, inputnames, outputnames, **kwargs)