Browse Source
Added dummy tasks for mysql and pgsql tests
for-closed-social
Thomas Boerger
8 years ago
No known key found for this signature in database
GPG Key ID: 5A388F55283960B6
1 changed files with
8 additions and
0 deletions
-
Makefile
|
|
@ -62,6 +62,14 @@ lint: |
|
|
|
test: |
|
|
|
for PKG in $(PACKAGES); do go test -cover -coverprofile $$GOPATH/src/$$PKG/coverage.out $$PKG || exit 1; done; |
|
|
|
|
|
|
|
.PHONY: test-mysql |
|
|
|
test-mysql: |
|
|
|
@echo "Not integrated yet!" |
|
|
|
|
|
|
|
.PHONY: test-pgsql |
|
|
|
test-pgsql: |
|
|
|
@echo "Not integrated yet!" |
|
|
|
|
|
|
|
.PHONY: check |
|
|
|
check: test |
|
|
|
|
|
|
|