Skip to content

Commit

Permalink
Don't run all race tests on windows (#1143)
Browse files Browse the repository at this point in the history
* Don't run all race tests on windows

It's too slow and gives a lot of false positives in our tests.

* No FS tests on windows
  • Loading branch information
erikdubbelboer committed Oct 31, 2021
1 parent 6006c87 commit c15e642
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client.go
@@ -1,3 +1,5 @@
// go:build !windows || !race

package fasthttp

import (
Expand Down
3 changes: 3 additions & 0 deletions fs_test.go
@@ -1,3 +1,6 @@
// go:build !windows
// Don't run FS tests on windows as it isn't compatible for now.

package fasthttp

import (
Expand Down
2 changes: 2 additions & 0 deletions server_test.go
@@ -1,3 +1,5 @@
// go:build !windows || !race

package fasthttp

import (
Expand Down

0 comments on commit c15e642

Please sign in to comment.