Makefile
35 lines
| 766 B
| text/x-makefile
|
MakefileLexer
r1220 | ||||
.PHONY: clean docs docs-clean docs-cleanup test test-clean test-only web-build | ||||
r1 | ||||
WEBPACK=./node_modules/webpack/bin/webpack.js | ||||
GRUNT=grunt | ||||
NODE_PATH=./node_modules | ||||
r1220 | ||||
clean: | ||||
make test-clean | ||||
find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' \) -exec rm '{}' ';' | ||||
r1 | ||||
r1220 | test: | |||
make test-clean | ||||
make test-only | ||||
r13 | ||||
r1220 | test-clean: | |||
rm -rf coverage.xml htmlcov junit.xml pylint.log result | ||||
find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';' | ||||
test-only: | ||||
PYTHONHASHSEED=random py.test -vv -r xw --cov=rhodecode --cov-report=term-missing --cov-report=html rhodecode | ||||
r13 | ||||
docs: | ||||
(cd docs; nix-build default.nix -o result; make clean html) | ||||
r1 | ||||
r13 | docs-clean: | |||
(cd docs; make clean) | ||||
r1214 | docs-cleanup: | |||
(cd docs; make cleanup) | ||||
r1 | web-build: | |||
NODE_PATH=$(NODE_PATH) $(GRUNT) | ||||