(self)
| 23 | |
| 24 | @function |
| 25 | async def pending(self): |
| 26 | return await ( |
| 27 | dag.container() |
| 28 | .from_("alpine:latest") |
| 29 | .with_env_variable("NOW", now) |
| 30 | .with_exec(["sleep", "1"]) |
| 31 | .with_exec(["false"]) |
| 32 | .with_exec(["sleep", "1"]) |
| 33 | .sync() |
| 34 | ) |
nothing calls this directly
no test coverage detected