Skip slower gps tests on -short

This commit is contained in:
sam boyer 2017-09-05 10:02:29 -04:00
Родитель a87f8cc784
Коммит 57e95ccf87
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -13,6 +13,10 @@ import (
)
func TestSourceManager_InferConstraint(t *testing.T) {
if testing.Short() {
t.Skip("Skipping slow test in short mode")
}
t.Parallel()
// Used in git subtests:

Просмотреть файл

@ -12,6 +12,10 @@ import (
)
func TestVCSVersion(t *testing.T) {
if testing.Short() {
t.Skip("Skipping slow test in short mode")
}
h := test.NewHelper(t)
defer h.Cleanup()
requiresBins(t, "git")