From 513d261f10271f7152eeb378e78ad90bef5b4914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoffer=20Illum=20S=C3=B8ndergaard?= Date: Sun, 30 Oct 2016 15:25:52 +0100 Subject: [PATCH] Added note for how to avoid running vendor tests --- .github/CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 9056d0f5e..fa4c80a08 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -112,6 +112,8 @@ More: https://labix.org/gocheck ``` ok _/home/vincent/src/github/vdemeester/traefik 0.004s ``` +- Note that `$ go test ./...` will run all tests (including the ones in the vendor directory for the dependencies that glide have fetched). If you only want to run the tests for traefik use `$ go test $(glide novendor)` instead. + ### Documentation