diff --git a/Makefile b/Makefile index a22fc11e26b..8ef68e1030b 100644 --- a/Makefile +++ b/Makefile @@ -27,12 +27,16 @@ assets: npm install && \ cd ${CWD} cp ${JS_DIR}/node_modules/select2/dist/js/i18n/*.js ${JS_DIR}/select2_l10n/ - ${POOTLE_CMD} compilejsi18n + echo 'Compiling js i18n' + ${POOTLE_CMD} compilejsi18n -v0 ${POOTLE_CMD} webpack --extra=--display-error-details mkdir -p ${ASSETS_DIR} - ${POOTLE_CMD} collectstatic --noinput --clear -i node_modules -i .tox -i docs ${TAIL} - ${POOTLE_CMD} assets build ${TAIL} + echo 'Collecting static' + ${POOTLE_CMD} collectstatic -v0 --noinput --clear -i node_modules -i .tox -i docs ${TAIL} + + echo 'Building assets' + ${POOTLE_CMD} assets -v0 build ${TAIL} chmod 664 ${ASSETS_DIR}.webassets-cache/* @@ -46,11 +50,13 @@ travis-assets: npm install && \ cd ${CWD}; \ cp ${JS_DIR}/node_modules/select2/dist/js/i18n/*.js ${JS_DIR}/select2_l10n/; \ - ${POOTLE_CMD} compilejsi18n; \ + ${POOTLE_CMD} compilejsi18n -v0; \ ${POOTLE_CMD} webpack --dev --nowatch; \ mkdir -p ${ASSETS_DIR}; \ - ${POOTLE_CMD} collectstatic --noinput --clear -i node_modules -i .tox -i docs ${TAIL}; \ - ${POOTLE_CMD} assets build ${TAIL}; \ + echo 'Collecting static'; \ + ${POOTLE_CMD} collectstatic -v0 --noinput --clear -i node_modules -i .tox -i docs ${TAIL}; \ + echo 'Building assets'; \ + ${POOTLE_CMD} assets -v0 build ${TAIL}; \ chmod 664 ${ASSETS_DIR}.webassets-cache/*; \ fi diff --git a/requirements/host.txt b/requirements/host.txt new file mode 100644 index 00000000000..50b8f9dd06f --- /dev/null +++ b/requirements/host.txt @@ -0,0 +1,2 @@ +makeyfile +docker-compose diff --git a/tox.ini b/tox.ini index 6bdfb77b336..15fb52116ff 100644 --- a/tox.ini +++ b/tox.ini @@ -71,7 +71,7 @@ commands= pootle init # Other linting make travis-assets - python setup.py sdist + python setup.py --quiet sdist make docs python setup.py check --restructuredtext --strict python setup.py build_mo