Skip to content
This repository was archived by the owner on May 8, 2024. It is now read-only.

Commit 92d1ac2

Browse files
committed
Run TestPopulateCloneAndWorkingDirEnvironmentVariables only on Linux and macOS
1 parent e5fb2d1 commit 92d1ac2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/executor/executor_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func TestLimitCommands(t *testing.T) {
5858
}
5959

6060
func TestPopulateCloneAndWorkingDirEnvironmentVariables(t *testing.T) {
61-
if runtime.GOOS == "windows" {
61+
if runtime.GOOS != "linux" && runtime.GOOS != "darwin" {
6262
t.Skip()
6363
return
6464
}

0 commit comments

Comments
 (0)