Adding short unit tests by default (#6494)

Этот коммит содержится в:
Christopher Speller
2017-05-25 11:01:53 -04:00
коммит произвёл Joram Wilander
родитель 554938a840
Коммит 00f48a1908
6 изменённых файлов: 77 добавлений и 32 удалений

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

@@ -28,6 +28,9 @@ func TestGetLogs(t *testing.T) {
}
func TestGetClusterInfos(t *testing.T) {
if testing.Short() {
t.SkipNow()
}
th := Setup().InitSystemAdmin().InitBasic()
if _, err := th.BasicClient.GetClusterStatus(); err == nil {