We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dadeab8 commit 9d0b4ccCopy full SHA for 9d0b4cc
codersdk/toolsdk/bash_test.go
@@ -1,3 +1,6 @@
1
+//go:build !windows
2
+// +build !windows
3
+
4
package toolsdk_test
5
6
import (
codersdk/toolsdk/toolsdk_test.go
@@ -4,6 +4,7 @@ import (
"context"
"encoding/json"
"os"
7
+ "runtime"
8
"sort"
9
"sync"
10
"testing"
@@ -397,6 +398,9 @@ func TestTools(t *testing.T) {
397
398
})
399
400
t.Run("WorkspaceSSHExec", func(t *testing.T) {
401
+ if runtime.GOOS == "windows" {
402
+ t.Skip("WorkspaceSSHExec is not supported on Windows")
403
+ }
404
// Setup workspace exactly like main SSH tests
405
client, workspace, agentToken := setupWorkspaceForAgent(t)
406
0 commit comments