mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-02-03 06:24:27 +01:00
internal/processtest: suppress issue2475 test for Windows
The result seems flaky unfortunately.
This commit is contained in:
parent
8fe3a0ef9b
commit
2702c6b228
5
internal/processtest/testdata/issue2475.go
vendored
5
internal/processtest/testdata/issue2475.go
vendored
@ -77,6 +77,11 @@ func main() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This test is flaky on Windows (especially on GitHub Actions). Skip this.
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
ebiten.SetCursorMode(ebiten.CursorModeCaptured)
|
ebiten.SetCursorMode(ebiten.CursorModeCaptured)
|
||||||
if err := ebiten.RunGame(&Game{}); err != nil {
|
if err := ebiten.RunGame(&Game{}); err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
|
Loading…
Reference in New Issue
Block a user