split unittest into seperate make command
This commit is contained in:
parent
dc34f9f8f8
commit
e4925ae14b
1 changed files with 5 additions and 3 deletions
8
Makefile
8
Makefile
|
@ -47,10 +47,12 @@ node_modules:
|
||||||
npm install
|
npm install
|
||||||
|
|
||||||
|
|
||||||
test: lint spellcheck
|
test: unittest lint spellcheck
|
||||||
|
|
||||||
|
unittest:
|
||||||
|
$(ENV)/nose2 --verbose
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
$(ENV)/nose2 --verbose
|
|
||||||
$(NODE_BIN)/eslint 'theme/static/src/js/'
|
$(NODE_BIN)/eslint 'theme/static/src/js/'
|
||||||
$(NODE_BIN)/sass-lint -vqc .sass-lint.yml
|
$(NODE_BIN)/sass-lint -vqc .sass-lint.yml
|
||||||
$(ENV)/flake8 $(BASEDIR)/plugins/ $(FLAKE8_IGNORE)
|
$(ENV)/flake8 $(BASEDIR)/plugins/ $(FLAKE8_IGNORE)
|
||||||
|
@ -63,7 +65,7 @@ spellcheck:
|
||||||
$(NODE_BIN)/mdspell --en-gb -ranx content/**/*.md content/*.md content/**/*.html content/*.html
|
$(NODE_BIN)/mdspell --en-gb -ranx content/**/*.md content/*.md content/**/*.html content/*.html
|
||||||
|
|
||||||
|
|
||||||
upload: build
|
upload:
|
||||||
git clone https://github.com/RealOrangeOne/host-container.git $(DEPLOY_DIR)
|
git clone https://github.com/RealOrangeOne/host-container.git $(DEPLOY_DIR)
|
||||||
cp -rf $(OUTPUTDIR)/. $(DEPLOY_DIR)/site/
|
cp -rf $(OUTPUTDIR)/. $(DEPLOY_DIR)/site/
|
||||||
@cd $(DEPLOY_DIR) && git remote add dokku $(DEPLOY_URL) && git add . && git commit -m "add files" && git push -f dokku master --quiet
|
@cd $(DEPLOY_DIR) && git remote add dokku $(DEPLOY_URL) && git add . && git commit -m "add files" && git push -f dokku master --quiet
|
||||||
|
|
Reference in a new issue