File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ var (
26
26
)
27
27
28
28
func TestCosmosDB (t * testing.T ) {
29
- kvtest .DriverTest (t , func (t testing.TB , ctx context.Context ) kv.Store {
30
- if runtime .GOOS == "darwin" {
31
- t .Skipf ("this test hangs for macOS users, and fails. skipping - see Issue#8476 for more details" )
32
- }
29
+ if runtime .GOOS != "windows" {
30
+ t .Skip ("Run CosmosDB tests on Widnows only, skipping - see Issue#8476 for more details" )
31
+ }
33
32
33
+ kvtest .DriverTest (t , func (t testing.TB , ctx context.Context ) kv.Store {
34
34
t .Helper ()
35
35
36
36
databaseClient , err := client .NewDatabase (testParams .Database )
@@ -61,8 +61,8 @@ func TestCosmosDB(t *testing.T) {
61
61
}
62
62
63
63
func TestMain (m * testing.M ) {
64
- if runtime .GOOS == "darwin " {
65
- // this part hangs for macOS users, and fails. skipping - see Issue#8476 for more details
64
+ if runtime .GOOS != "windows " {
65
+ // this part hangs for non windows users, and fails. skipping - see Issue#8476 for more details
66
66
return
67
67
}
68
68
You can’t perform that action at this time.
0 commit comments