Add some more Makefile targets for running different test suites.

This commit is contained in:
Dave Page 2017-06-14 14:11:51 +01:00
parent fdc9eed514
commit 6938fbafb5

View File

@ -23,7 +23,16 @@ appbundle-webkit: docs
PGADMIN4_USE_WEBKIT=1 ./pkg/mac/build.sh
check:
python web/regression/runtests.py
cd web && yarn run bundle && yarn run linter && yarn run karma start -- --single-run && python regression/runtests.py
check-python:
cd web && yarn run bundle && python regression/runtests.py --exclude feature_tests
check-feature:
cd web && yarn run bundle && python regression/runtests.py --pkg feature_tests
check-js:
cd web && yarn run linter && yarn run karma start -- --single-run
# Include all clean sub-targets in clean
clean: clean-appbundle clean-dist clean-docs clean-pip clean-src