##// END OF EJS Templates
system-info: fixed reporting of inodes.
system-info: fixed reporting of inodes.

File last commit:

r1214:493a5c1f default
r1219:57b5baf2 default
Show More
Makefile
42 lines | 889 B | text/x-makefile | MakefileLexer
project: added all source files and assets
r1
WEBPACK=./node_modules/webpack/bin/webpack.js
GRUNT=grunt
NODE_PATH=./node_modules
CI_PREFIX=enterprise
makefile: added commands to quickly build docs.
r13 .PHONY: docs docs-clean ci-docs clean test test-clean test-lint test-only
docs:
(cd docs; nix-build default.nix -o result; make clean html)
project: added all source files and assets
r1
makefile: added commands to quickly build docs.
r13 docs-clean:
(cd docs; make clean)
make: updated docs make commands.
r1214 docs-cleanup:
(cd docs; make cleanup)
makefile: added commands to quickly build docs.
r13 ci-docs: docs;
project: added all source files and assets
r1
clean: test-clean
find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' \) -exec rm '{}' ';'
makefile: disable linting tests, they should be executed manually if required
r381 test: test-clean test-only
project: added all source files and assets
r1
test-clean:
rm -rf coverage.xml htmlcov junit.xml pylint.log result
test-only:
PYTHONHASHSEED=random py.test -vv -r xw --cov=rhodecode --cov-report=term-missing --cov-report=html rhodecode/tests/
web-build:
NODE_PATH=$(NODE_PATH) $(GRUNT)
web-test:
@echo "no test for our javascript, yet!"
docs-bootstrap:
(cd docs; nix-build default.nix -o result)
@echo "Please go to docs folder and run make html"
makefile: added commands to quickly build docs.
r13