Add target for ci to minify with tests

This commit is contained in:
Joe Fiorini 2015-02-09 09:45:23 -05:00
parent 8c3ea4f8da
commit 43d6124153

View File

@ -248,7 +248,7 @@ ui_analysis_report: node_modules
$(GRUNT) plato:report
# Run UI unit tests
test_ui: node_modules
test_ui: node_modules minjs_ci
$(GRUNT) karma:ci
# Run API unit tests across multiple Python/Django versions with Tox.
@ -281,6 +281,9 @@ devjs: node_modules clean-ui
minjs: node_modules clean-ui
$(BROCCOLI) build awx/ui/static/dist -- --silent --no-debug --no-tests --compress
minjs_ci: node_modules clean-ui
$(BROCCOLI) build awx/ui/static/dist -- --no-debug --compress
# Check .js files for errors and lint
jshint: node_modules
$(GRUNT) $@