diff --git a/Makefile b/Makefile index 2a44d25..c8a6662 100644 --- a/Makefile +++ b/Makefile @@ -6,16 +6,15 @@ host=localhost port=5432 database=postgres verbose=false -native=false -params := -u $(user) --password $(password) -p $(port) -d $(database) -h $(host) --verbose $(verbose) --native $(native) +params := -u $(user) --password $(password) -p $(port) -d $(database) -h $(host) --verbose $(verbose) node-command := xargs -n 1 -I file node file $(params) .PHONY : test test-connection test-integration bench test-native build test: test-unit -test-all: test-unit test-integration +test-all: test-unit test-integration test-native bench: @find benchmark -name "*-bench.js" | $(node-command) @@ -31,6 +30,7 @@ test-connection: test-native: build/default/binding.node @find test/native -name "*-tests.js" | $(node-command) + @find test/integration -name "*-tests.js" | $(node-command) --native true test-integration: test-connection @find test/integration -name "*-tests.js" | $(node-command)