Skip to content

Commit

Permalink
chore(e2e): Remove need for tparse
Browse files Browse the repository at this point in the history
  • Loading branch information
moduli committed Feb 5, 2024
1 parent e34d3bb commit 3e8fc97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enos/modules/test_e2e/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ resource "enos_local_exec" "run_e2e_test" {
}

inline = var.debug_no_run ? [""] : [
"set -o pipefail; PATH=\"${var.local_boundary_dir}:$PATH\" go test -v ${var.test_package} -count=1 -json -timeout ${var.test_timeout}| tparse -follow -format plain 2>&1 | tee ${path.module}/../../test-e2e-${local.package_name}.log"
"set -o pipefail; PATH=\"${var.local_boundary_dir}:$PATH\" go test -v ${var.test_package} -count=1 -json -timeout ${var.test_timeout} | tee ${path.module}/../../test-e2e-${local.package_name}.log"
]
}

Expand Down

0 comments on commit 3e8fc97

Please sign in to comment.