aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/ci.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/ci.go b/build/ci.go
index 5e63c2411..8b6ebe74c 100644
--- a/build/ci.go
+++ b/build/ci.go
@@ -292,7 +292,8 @@ func doTest(cmdline []string) {
// Run analysis tools before the tests.
build.MustRun(goTool("vet", packages...))
if *misspell {
- spellcheck(packages)
+ // TODO(karalabe): Reenable after false detection is fixed: https://github.com/client9/misspell/issues/105
+ // spellcheck(packages)
}
// Run the actual tests.
gotest := goTool("test", buildFlags(env)...)