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 0a26eee commit ac7399aCopy full SHA for ac7399a
coderd/idpsync/role_test.go
@@ -190,9 +190,11 @@ func TestRoleSyncTable(t *testing.T) {
190
191
for _, tc := range testCases {
192
tc := tc
193
+ // The final test, "AllTogether", cannot run in parallel.
194
+ // These tests are nearly instant using the memory db, so
195
+ // this is still fast without being in parallel.
196
+ //nolint:paralleltest, tparallel
197
t.Run(tc.Name, func(t *testing.T) {
- t.Parallel()
-
198
db, _ := dbtestutil.NewDB(t)
199
manager := runtimeconfig.NewManager()
200
s := idpsync.NewAGPLSync(slogtest.Make(t, &slogtest.Options{
0 commit comments