зеркало из https://github.com/golang/dep.git
Skip slower gps tests on -short
This commit is contained in:
Родитель
a87f8cc784
Коммит
57e95ccf87
|
@ -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")
|
||||
|
|
Загрузка…
Ссылка в новой задаче