makefile: remove testappengine from make all (#2621)

Since it requires goapp.
This commit is contained in:
Menghan Li 2019-02-07 13:44:42 -08:00 коммит произвёл GitHub
Родитель 01e57758bc
Коммит 2259ee6f1a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 1 удалений

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

@ -31,6 +31,7 @@ How to get your contributions merged smoothly and quickly.
- `make vet` to catch vet errors
- `make test` to run the tests
- `make testrace` to run tests in race mode
- optional `make testappengine` to run tests with appengine
- Exceptions to the rules can be made if there's a compelling reason for doing so.

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

@ -1,4 +1,4 @@
all: vet test testrace testappengine
all: vet test testrace
build: deps
go build google.golang.org/grpc/...