Add an integration test setup on test runs. This is quick and dirty but will catch some errors not otherwise caught.
diff --git a/Makefile b/Makefile index 7bce28f..499bf4f 100644 --- a/Makefile +++ b/Makefile
@@ -12,6 +12,11 @@ test: ${GLIDE_GO_EXECUTABLE} test . ./gb ./path ./action ./tree ./util ./godep ./godep/strip ./gpm ./cfg ./dependency ./importer ./msg ./repo ./mirrors +integration-test: + ${GLIDE_GO_EXECUTABLE} build + ./glide up + ./glide install + clean: rm -f ./glide.test rm -f ./glide @@ -36,4 +41,4 @@ cd .. -.PHONY: build test install clean bootstrap-dist build-all dist +.PHONY: build test install clean bootstrap-dist build-all dist integration-test