summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnike Arni <anikarni@gmail.com>2017-03-13 19:14:01 -0300
committerGitHub <noreply@github.com>2017-03-13 19:14:01 -0300
commitea12f3740dd4ff35fc3bc117140543988bdb757b (patch)
tree2b4d7b3c5ebd267ad252ab05c440a90033e4f962 /Makefile
parent412d95d64b5d26d4f5e00a85b7b62da23e9bb168 (diff)
parent99a6a41ffea6de9e4b3df43265282d76c3391fd1 (diff)
Merge pull request #963 from pixelated/makefile-tests
Simplify test routines to not install packages every time
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 86567e3b..5ca8ffcb 100644
--- a/Makefile
+++ b/Makefile
@@ -36,11 +36,11 @@ create_virtualenv: ensure_virtualenv_installed
virtualenv --python=python2 $(VIRTUALENV);\
fi
-test: test_py test_js coverage
-test_py: clean requirements install coverage linters_py unit_tests_py integration_tests_py
-test_js: clean requirements_js install_js linters_js unit_tests_js
+test: clean install test_py test_js coverage
+test_py: linters_py unit_tests_py integration_tests_py
+test_js: linters_js unit_tests_js
test_all: test functional_tests
-linters: clean requirements install linters_py linters_js
+linters: clean install linters_py linters_js
linters_py:
@. $(VIRTUALENV)/bin/activate;\