We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d33db91 commit eca5090Copy full SHA for eca5090
provisioner/terraform/serve_internal_test.go
@@ -5,6 +5,7 @@ import (
5
"fmt"
6
"os"
7
"path/filepath"
8
+ "runtime"
9
"strings"
10
"testing"
11
@@ -55,6 +56,10 @@ func Test_getAbsoluteBinaryPath(t *testing.T) {
55
56
// nolint:paralleltest
57
for _, tt := range tests {
58
t.Run(tt.name, func(t *testing.T) {
59
+ if runtime.GOOS == "windows" {
60
+ t.Skip("Dummy terraform executable on Windows requires sh which isn't very practical.")
61
+ }
62
+
63
// Create a temp dir with the binary
64
tempDir := t.TempDir()
65
terraformBinaryOutput := fmt.Sprintf(`#!/bin/sh
0 commit comments