Skip to content

Commit

Permalink
test: skip k6build related test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
szkiba committed Jul 9, 2024
1 parent 1aafd21 commit fef8ae3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cmd/state_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ func Test_persistentPreRunE(t *testing.T) {
func Test_preRunE(t *testing.T) {
t.Parallel()

if runtime.GOOS == "windows" { // TODO - Re-enable as soon as k6build supports Windows!
t.Skip("Skip because k6build doesn't work on Windows yet!")
}

st := &state{
levelVar: new(slog.LevelVar),
Options: k6exec.Options{
Expand Down Expand Up @@ -120,6 +124,10 @@ func Test_preRunE(t *testing.T) {
func Test_runE(t *testing.T) {
t.Parallel()

if runtime.GOOS == "windows" { // TODO - Re-enable as soon as k6build supports Windows!
t.Skip("Skip because k6build doesn't work on Windows yet!")
}

st := &state{
levelVar: new(slog.LevelVar),
Options: k6exec.Options{
Expand Down

0 comments on commit fef8ae3

Please sign in to comment.