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 c689934 commit 601dd8eCopy full SHA for 601dd8e
cli/exp_rpty_test.go
@@ -2,6 +2,7 @@ package cli_test
2
3
import (
4
"fmt"
5
+ "runtime"
6
"testing"
7
8
"github.com/ory/dockertest/v3"
@@ -58,6 +59,10 @@ func TestExpRpty(t *testing.T) {
58
59
60
t.Run("Container", func(t *testing.T) {
61
t.Parallel()
62
+ // Skip this test on non-Linux platforms since it requires Docker
63
+ if runtime.GOOS != "linux" {
64
+ t.Skip("Skipping test on non-Linux platform")
65
+ }
66
67
client, workspace, agentToken := setupWorkspaceForAgent(t)
68
ctx := testutil.Context(t, testutil.WaitLong)
0 commit comments