e2e: more occasionally slow exec tasks (#19337)

This commit is contained in:
Daniel Bennett
2023-12-06 15:22:15 -06:00
committed by GitHub
parent 9fe1f0aadc
commit 36f69a8e88

View File

@@ -42,6 +42,7 @@ func testExecNamespacePID(t *testing.T) {
job, cleanup := jobs3.Submit(t,
"./input/exec.hcl",
jobs3.WaitComplete("group"),
jobs3.Timeout(time.Second*30), // exec can be a bit slow
)
t.Cleanup(cleanup)
@@ -53,6 +54,7 @@ func testExecHostPID(t *testing.T) {
job, cleanup := jobs3.Submit(t,
"./input/exec_host.hcl",
jobs3.WaitComplete("group"),
jobs3.Timeout(time.Second*30), // exec can be a bit slow
)
t.Cleanup(cleanup)