diff --git a/pkg/context/docker/dockercontext.go b/pkg/context/docker/dockercontext.go index 82b02ee..fb68db0 100644 --- a/pkg/context/docker/dockercontext.go +++ b/pkg/context/docker/dockercontext.go @@ -14,7 +14,8 @@ import ( // Docker image, which is used when Run() is called or when RunT() is used // but the job category is not set in the job template. type Config struct { - DBFile string + DBFile string + // DefaultDockerImage needs to be pulled before. DefaultDockerImage string DefaultTemplate drmaa2interface.JobTemplate } diff --git a/test/test.go b/test/test.go index c4f0b47..56d9678 100644 --- a/test/test.go +++ b/test/test.go @@ -30,7 +30,6 @@ func createProcBuild() (map[string]string, drmaa2interface.JobTemplate, *wfl.Job "parallel": "../examples/parallel/parallel.go", "notifier": "../examples/notifier/notifier.go", "shell": "../examples/shell/shell.go", - "stream": "../examples/stream/stream.go", "builderPattern": "../examples/builderPattern/builderPattern.go", "singularity": "../examples/singularity/singularity.go", } @@ -57,7 +56,6 @@ func createDockerBuild(image string) (map[string]string, drmaa2interface.JobTemp "template": "/go/src/github.com/dgruber/wfl/examples/template/template.go", "parallel": "/go/src/github.com/dgruber/wfl/examples/parallel/parallel.go", "shell": "/go/src/github.com/dgruber/wfl/examples/shell/shell.go", - "stream": "/go/src/github.com/dgruber/wfl/examples/stream/stream.go", "builderPattern": "/go/src/github.com/dgruber/wfl/examples/builderPattern/builderPattern.go", "singularity": "/go/src/github.com/dgruber/wfl/examples/singularity/singularity.go", }