(t *testctx.T, c *dagger.Client, inc []string)
| 2164 | } |
| 2165 | |
| 2166 | func pipLockMod(t *testctx.T, c *dagger.Client, inc []string) dagger.WithContainerFunc { |
| 2167 | t.Helper() |
| 2168 | modSrc, err := filepath.Abs("./testdata/modules/python/pip-lock") |
| 2169 | require.NoError(t, err) |
| 2170 | return func(ctr *dagger.Container) *dagger.Container { |
| 2171 | return ctr.WithDirectory("", c.Host().Directory(modSrc, dagger.HostDirectoryOpts{ |
| 2172 | Include: inc, |
| 2173 | })) |
| 2174 | } |
| 2175 | } |
| 2176 | |
| 2177 | func (PythonSuite) TestContainerDefaultValue(ctx context.Context, t *testctx.T) { |
| 2178 | c := connect(ctx, t) |
no test coverage detected