(t testing.TB, c *dagger.Client, source string)
| 2122 | } |
| 2123 | |
| 2124 | func pythonModInit(t testing.TB, c *dagger.Client, source string) *dagger.Container { |
| 2125 | t.Helper() |
| 2126 | return daggerCliBase(t, c). |
| 2127 | With(daggerInitPython()). |
| 2128 | With(pythonSource(source)) |
| 2129 | } |
| 2130 | |
| 2131 | func daggerInitPython(args ...string) dagger.WithContainerFunc { |
| 2132 | return daggerInitPythonAt("", args...) |
no test coverage detected