From 2e2f25eb8156bf9538b503871cc60374a9a8813b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Armando=20Garc=C3=ADa=20Sancio?= Date: Mon, 23 Feb 2015 19:02:22 +0000 Subject: [PATCH] Adds support for generating packages/wheels --- Makefile | 2 +- bin/start_integration_test.sh | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 79bdc84..5eafd4e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all: env test +all: env test packages clean: bin/clean.sh diff --git a/bin/start_integration_test.sh b/bin/start_integration_test.sh index 1f8d7ac..dcace91 100755 --- a/bin/start_integration_test.sh +++ b/bin/start_integration_test.sh @@ -24,6 +24,12 @@ dpkg -l marathon mesos zookeeper | grep '^ii' # Give all of the processes above some time. sleep 2 -# Run the tox integration tests +# Clean and recreate environment cd /dcos-cli -make clean all +make clean env + +# Activate the virtual environment so that we can run make +source env/bin/activate + +# Run the default target: E.g. test and package +make