mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Disable NPM test on Travis on Windows
For now.
This commit is contained in:
parent
f66302ca05
commit
3437174c3a
1 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue