Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-11-05 11:56:22 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-11-05 11:56:22 +0300
commit3437174c3a7b96925b82b351ac87530b4fa796a5 (patch)
tree7a902c4ccbfcb2e4c8c84954617cc04105ec0891 /hugolib
parentf66302ca0579171ffd1730eb8f33dd05af3d9a00 (diff)
Disable NPM test on Travis on Windows
For now.
Diffstat (limited to 'hugolib')
-rw-r--r--hugolib/js_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/hugolib/js_test.go b/hugolib/js_test.go
index 25617b168..c783bf781 100644
--- a/hugolib/js_test.go
+++ b/hugolib/js_test.go
@@ -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)