Thanks to visit codestin.com Credit goes to github.com
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 769ae1d commit e7e9c27Copy full SHA for e7e9c27
coderd/users_test.go
@@ -5,6 +5,7 @@ import (
5
"database/sql"
6
"fmt"
7
"net/http"
8
+ "runtime"
9
"slices"
10
"strings"
11
"testing"
@@ -2423,6 +2424,10 @@ func TestSystemUserBehaviour(t *testing.T) {
2423
2424
// Setup.
2425
t.Parallel()
2426
2427
+ if runtime.GOOS != "linux" {
2428
+ t.Skip("skipping because non-linux platforms are tricky to run the mock db container on, and there's no platform-dependence on these tests")
2429
+ }
2430
+
2431
ctx := testutil.Context(t, testutil.WaitLong)
2432
2433
sqlDB := testSQLDB(t)
0 commit comments