Skip to content

Commit

Permalink
Fix test-adapter target
Browse files Browse the repository at this point in the history
  • Loading branch information
xiam committed Feb 5, 2017
1 parent 7c58d1e commit 6851793
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ test-internal:

test-libs: test-lib test-internal

test-%:
$(MAKE) -C $* test || exit 1;

test-adapters: test-postgresql test-mysql test-sqlite test-ql test-mongo
test-adapters: test-adapter-postgresql test-adapter-mysql test-adapter-sqlite test-adapter-ql test-adapter-mongo

reset-db:
$(MAKE) -C postgresql reset-db && \
Expand All @@ -36,3 +33,6 @@ test-main: reset-db
go test -v

test: test-adapters test-libs test-main

test-adapter-%:
$(MAKE) -C $* test || exit 1;

0 comments on commit 6851793

Please sign in to comment.