##// END OF EJS Templates
makefile: disable linting tests, they should be executed manually if required
marcink -
r381:835a8b3a default
parent child Browse files
Show More
@@ -1,47 +1,47 b''
1 1
2 2 WEBPACK=./node_modules/webpack/bin/webpack.js
3 3 GRUNT=grunt
4 4 NODE_PATH=./node_modules
5 5 FLAKE8=flake8 setup.py pytest_pylons/ rhodecode/ --select=E124 --ignore=E711,E712,E510,E121,E122,E126,E127,E128,E501,F401 --max-line-length=100 --exclude=*rhodecode/lib/dbmigrate/*,*rhodecode/tests/*,*rhodecode/lib/vcs/utils/*
6 6 CI_PREFIX=enterprise
7 7
8 8 .PHONY: docs docs-clean ci-docs clean test test-clean test-lint test-only
9 9
10 10
11 11 docs:
12 12 (cd docs; nix-build default.nix -o result; make clean html)
13 13
14 14 docs-clean:
15 15 (cd docs; make clean)
16 16
17 17 ci-docs: docs;
18 18
19 19
20 20 clean: test-clean
21 21 find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' \) -exec rm '{}' ';'
22 22
23 test: test-clean test-lint test-only
23 test: test-clean test-only
24 24
25 25 test-clean:
26 26 rm -rf coverage.xml htmlcov junit.xml pylint.log result
27 27
28 28 test-lint:
29 29 if [ "$$IN_NIX_SHELL" = "1" ]; then \
30 30 $(FLAKE8); \
31 31 else \
32 32 $(FLAKE8) --format=pylint --exit-zero > pylint.log; \
33 33 fi
34 34
35 35 test-only:
36 36 PYTHONHASHSEED=random py.test -vv -r xw --cov=rhodecode --cov-report=term-missing --cov-report=html rhodecode/tests/
37 37
38 38 web-build:
39 39 NODE_PATH=$(NODE_PATH) $(GRUNT)
40 40
41 41 web-test:
42 42 @echo "no test for our javascript, yet!"
43 43
44 44 docs-bootstrap:
45 45 (cd docs; nix-build default.nix -o result)
46 46 @echo "Please go to docs folder and run make html"
47 47
General Comments 0
You need to be logged in to leave comments. Login now