diff options
author | Dan Radez <dradez@redhat.com> | 2016-05-31 22:58:00 -0400 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2016-06-07 09:26:24 -0400 |
commit | 4b7436673f7bc8422a793f94c9fed5c2fc671167 (patch) | |
tree | b35a9625290be117a09f292e54831e85ae2c46f4 /build | |
parent | 5aa09cb2a69b677baf6e7614b734e155e8205a5b (diff) |
Enabling python coverage tests in build.sh
Change-Id: Iececedb03a60dd0bfc1ad6ef1275f6a0427350eb
Signed-off-by: Dan Radez <dradez@redhat.com>
Diffstat (limited to 'build')
-rw-r--r-- | build/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/build/Makefile b/build/Makefile index 8a498a66..4d024a3b 100644 --- a/build/Makefile +++ b/build/Makefile @@ -56,6 +56,15 @@ $(RPMCOM): # build the common RPM rpmbuild --clean -ba opnfv-apex-common.spec -D '_topdir %(echo `pwd`)' -D '_builddir %(echo `pwd`)' -D '_sourcedir %(echo `pwd`)' -D '_rpmdir %(echo `pwd`)' -D '_specdir %(echo `pwd`)' -D '_srcrpmdir %(echo `pwd`)' -D "release $(shell echo $(RELEASE) | tr -d '_-')" +################## +# PYTHON TESTS # +################## + +.PHONY: python-tests +python-tests: + cd ../tests && ./python-coverage.sh + + ############### # UNDERCLOUD # ############### |