diff options
| author | Anike Arni <anikarni@gmail.com> | 2017-03-13 19:14:01 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-13 19:14:01 -0300 |
| commit | ea12f3740dd4ff35fc3bc117140543988bdb757b (patch) | |
| tree | 2b4d7b3c5ebd267ad252ab05c440a90033e4f962 /Makefile | |
| parent | 412d95d64b5d26d4f5e00a85b7b62da23e9bb168 (diff) | |
| parent | 99a6a41ffea6de9e4b3df43265282d76c3391fd1 (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-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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;\ |
