test3 Makefile target

This commit is contained in:
Mike McLean 2017-05-16 17:35:09 -04:00 committed by Tomas Kopecek
parent c4a48efd83
commit c976c3f2b2

View file

@ -70,6 +70,10 @@ test:
coverage html
@echo Coverage report in htmlcov/index.html
test3:
PYTHONPATH=hub/.:plugins/hub/.:plugins/builder/. nosetests-3 tests/test_lib tests/test_cli
@echo Coverage not working for py3 tests yet
subdirs:
for d in $(SUBDIRS); do make -C $$d; [ $$? = 0 ] || exit 1; done