Skip to content

Commit

Permalink
Update skip message and remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredoconnell committed Sep 13, 2024
1 parent 8f1494a commit 015882a
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions engine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,7 @@ output: []`),

func TestE2E(t *testing.T) {
if testing.Short() {
// This test requires pulling containers; it must not be used when count > 2
t.Skip("skipping e2e test in short mode")
t.Skip("skipping e2e test in short mode due to container pulling")
}

content := map[string][]byte{
Expand Down Expand Up @@ -190,8 +189,7 @@ output:

func TestE2EMultipleOutputs(t *testing.T) {
if testing.Short() {
// This test requires pulling containers; it must not be used when count > 2
t.Skip("skipping e2e test in short mode")
t.Skip("skipping e2e test in short mode due to container pulling")
}

content := map[string][]byte{
Expand Down Expand Up @@ -231,8 +229,7 @@ outputs:

func TestE2EWorkflowDefaultInput(t *testing.T) {
if testing.Short() {
// This test requires pulling containers; it must not be used when count > 2
t.Skip("skipping e2e test in short mode")
t.Skip("skipping e2e test in short mode due to container pulling")
}

content := map[string][]byte{
Expand Down Expand Up @@ -278,8 +275,7 @@ outputs:
// workflow's execution.
func Test_CacheSubworkflows(t *testing.T) {
if testing.Short() {
// This test requires pulling containers; it must not be used when count > 2
t.Skip("skipping e2e test in short mode")
t.Skip("skipping e2e test in short mode due to container pulling")
}

fileCache, err := loadfile.NewFileCacheUsingContext(
Expand Down

0 comments on commit 015882a

Please sign in to comment.