Skip to content

Commit

Permalink
Disable NPM test on Travis on Windows
Browse files Browse the repository at this point in the history
For now.
  • Loading branch information
bep committed Nov 5, 2020
1 parent f66302c commit 3437174
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hugolib/js_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ func TestJSBuild(t *testing.T) {
t.Skip("skip (relative) long running modules test when running locally")
}

if runtime.GOOS == "windows" {
// TODO(bep) we really need to get this working on Travis.
t.Skip("skip npm test on Windows")
}

wd, _ := os.Getwd()
defer func() {
os.Chdir(wd)
Expand Down

0 comments on commit 3437174

Please sign in to comment.