Show More
@@ -1,55 +1,64 b'' | |||
|
1 | 1 | |
|
2 | 2 | .PHONY: clean docs docs-clean docs-cleanup test test-clean test-only test-only-postgres test-only-mysql web-build generate-pkgs |
|
3 | 3 | |
|
4 | 4 | NODE_PATH=./node_modules |
|
5 | 5 | WEBPACK=./node_binaries/webpack |
|
6 | 6 | GRUNT=./node_binaries/grunt |
|
7 | 7 | |
|
8 | 8 | |
|
9 | 9 | clean: |
|
10 | 10 | make test-clean |
|
11 | 11 | find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';' |
|
12 | 12 | |
|
13 | 13 | test: |
|
14 | 14 | make test-clean |
|
15 | 15 | make test-only |
|
16 | 16 | |
|
17 | 17 | test-clean: |
|
18 | 18 | rm -rf coverage.xml htmlcov junit.xml pylint.log result |
|
19 | 19 | find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';' |
|
20 | 20 | |
|
21 | 21 | test-only: |
|
22 | 22 | PYTHONHASHSEED=random \ |
|
23 | 23 | py.test -x -vv -r xw -p no:sugar --cov=rhodecode \ |
|
24 | 24 | --cov-report=term-missing --cov-report=html \ |
|
25 | 25 | rhodecode |
|
26 | 26 | |
|
27 | 27 | test-only-mysql: |
|
28 | 28 | PYTHONHASHSEED=random \ |
|
29 | 29 | py.test -x -vv -r xw -p no:sugar --cov=rhodecode \ |
|
30 | 30 | --cov-report=term-missing --cov-report=html \ |
|
31 | 31 | --ini-config-override='{"app:main": {"sqlalchemy.db1.url": "mysql://root:qweqwe@localhost/rhodecode_test"}}' \ |
|
32 | 32 | rhodecode |
|
33 | 33 | |
|
34 | 34 | test-only-postgres: |
|
35 | 35 | PYTHONHASHSEED=random \ |
|
36 | 36 | py.test -x -vv -r xw -p no:sugar --cov=rhodecode \ |
|
37 | 37 | --cov-report=term-missing --cov-report=html \ |
|
38 | 38 | --ini-config-override='{"app:main": {"sqlalchemy.db1.url": "postgresql://postgres:qweqwe@localhost/rhodecode_test"}}' \ |
|
39 | 39 | rhodecode |
|
40 | 40 | |
|
41 | 41 | |
|
42 | 42 | docs: |
|
43 | 43 | (cd docs; nix-build default.nix -o result; make clean html) |
|
44 | 44 | |
|
45 | 45 | docs-clean: |
|
46 | 46 | (cd docs; make clean) |
|
47 | 47 | |
|
48 | 48 | docs-cleanup: |
|
49 | 49 | (cd docs; make cleanup) |
|
50 | 50 | |
|
51 | 51 | web-build: |
|
52 | 52 | NODE_PATH=$(NODE_PATH) $(GRUNT) |
|
53 | 53 | |
|
54 | 54 | generate-pkgs: |
|
55 | 55 | nix-shell pkgs/shell-generate.nix --command "pip2nix generate --licenses" |
|
56 | ||
|
57 | generate-js-pkgs: | |
|
58 | rm -rf node_modules && \ | |
|
59 | nix-shell pkgs/shell-generate.nix --command "node2nix --input package.json -o pkgs/node-packages.nix -e pkgs/node-env.nix -c pkgs/node-default.nix -d --flatten --nodejs-8" && \ | |
|
60 | sed -i -e 's/http:\/\//https:\/\//g' pkgs/node-packages.nix | |
|
61 | ||
|
62 | generate-license-meta: | |
|
63 | nix-build pkgs/license-generate.nix -o result-license && \ | |
|
64 | cat result-license/licenses.json | python -m json.tool > rhodecode/config/licenses.json No newline at end of file |
General Comments 0
You need to be logged in to leave comments.
Login now