Show More
@@ -1,112 +1,120 b'' | |||
|
1 | 1 | # required for pushd to work.. |
|
2 | 2 | #SHELL = /bin/bash |
|
3 | 3 | |
|
4 | 4 | |
|
5 | 5 | # set by: PATH_TO_OUTDATED_PACKAGES=/some/path/outdated_packages.py |
|
6 | 6 | OUTDATED_PACKAGES = ${PATH_TO_OUTDATED_PACKAGES} |
|
7 | 7 | |
|
8 | 8 | .PHONY: clean |
|
9 | 9 | ## Cleanup compiled and cache py files |
|
10 | 10 | clean: |
|
11 | 11 | make test-clean |
|
12 | 12 | find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';' |
|
13 | 13 | find . -type d -name "build" -prune -exec rm -rf '{}' ';' |
|
14 | 14 | |
|
15 | 15 | |
|
16 | 16 | .PHONY: test |
|
17 | 17 | ## run test-clean and tests |
|
18 | 18 | test: |
|
19 | 19 | make test-clean |
|
20 | 20 | make test-only |
|
21 | 21 | |
|
22 | 22 | |
|
23 | 23 | .PHONY: test-clean |
|
24 | 24 | ## run test-clean and tests |
|
25 | 25 | test-clean: |
|
26 | 26 | rm -rf coverage.xml htmlcov junit.xml pylint.log result |
|
27 | 27 | find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';' |
|
28 | 28 | find . -type f \( -iname '.coverage.*' \) -exec rm '{}' ';' |
|
29 | 29 | |
|
30 | 30 | |
|
31 | 31 | .PHONY: test-only |
|
32 | 32 | ## Run tests only without cleanup |
|
33 | 33 | test-only: |
|
34 | 34 | PYTHONHASHSEED=random \ |
|
35 | 35 | py.test -x -vv -r xw -p no:sugar \ |
|
36 | 36 | --cov-report=term-missing --cov-report=html \ |
|
37 | 37 | --cov=vcsserver vcsserver |
|
38 | 38 | |
|
39 | 39 | |
|
40 | .PHONY: ruff-check | |
|
41 | ## run a ruff analysis | |
|
42 | ruff-check: | |
|
43 | ruff check --ignore F401 --ignore I001 --ignore E402 --ignore E501 --ignore F841 --exclude rhodecode/lib/dbmigrate --exclude .eggs --exclude .dev . | |
|
44 | ||
|
45 | ||
|
40 | 46 | .PHONY: pip-packages |
|
41 | 47 | ## Show outdated packages |
|
42 | 48 | pip-packages: |
|
43 | 49 | python ${OUTDATED_PACKAGES} |
|
44 | 50 | |
|
45 | 51 | |
|
46 | 52 | .PHONY: build |
|
47 | 53 | ## Build sdist/egg |
|
48 | 54 | build: |
|
49 | 55 | python -m build |
|
50 | 56 | |
|
51 | 57 | |
|
52 | 58 | .PHONY: dev-env |
|
53 | 59 | ## make dev-env based on the requirements files and install develop of packages |
|
60 | ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y | |
|
54 | 61 | dev-env: |
|
55 | 62 | pip install build virtualenv |
|
56 | 63 | pip wheel --wheel-dir=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_test.txt -r requirements_debug.txt |
|
57 | 64 | pip install --no-index --find-links=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_test.txt -r requirements_debug.txt |
|
58 | 65 | pip install -e . |
|
59 | 66 | |
|
60 | 67 | |
|
61 | 68 | .PHONY: dev-srv |
|
62 | ## run develop server instance | |
|
69 | ## run develop server instance, docker exec -it $(docker ps -q --filter 'name=dev-enterprise-ce') /bin/bash | |
|
63 | 70 | dev-srv: |
|
64 | 71 | pserve --reload .dev/dev.ini |
|
65 | 72 | |
|
66 | 73 | |
|
67 | 74 | .PHONY: dev-srv-g |
|
68 | 75 | ## run gunicorn multi process workers |
|
69 | 76 | dev-srv-g: |
|
70 | 77 | gunicorn --workers=4 --paste .dev/dev.ini --bind=0.0.0.0:10010 --config=.dev/gunicorn_config.py |
|
71 | 78 | |
|
79 | ||
|
72 | 80 | # Default command on calling make |
|
73 | 81 | .DEFAULT_GOAL := show-help |
|
74 | 82 | |
|
75 | 83 | .PHONY: show-help |
|
76 | 84 | show-help: |
|
77 | 85 | @echo "$$(tput bold)Available rules:$$(tput sgr0)" |
|
78 | 86 | @echo |
|
79 | 87 | @sed -n -e "/^## / { \ |
|
80 | 88 | h; \ |
|
81 | 89 | s/.*//; \ |
|
82 | 90 | :doc" \ |
|
83 | 91 | -e "H; \ |
|
84 | 92 | n; \ |
|
85 | 93 | s/^## //; \ |
|
86 | 94 | t doc" \ |
|
87 | 95 | -e "s/:.*//; \ |
|
88 | 96 | G; \ |
|
89 | 97 | s/\\n## /---/; \ |
|
90 | 98 | s/\\n/ /g; \ |
|
91 | 99 | p; \ |
|
92 | 100 | }" ${MAKEFILE_LIST} \ |
|
93 | 101 | | LC_ALL='C' sort --ignore-case \ |
|
94 | 102 | | awk -F '---' \ |
|
95 | 103 | -v ncol=$$(tput cols) \ |
|
96 | 104 | -v indent=19 \ |
|
97 | 105 | -v col_on="$$(tput setaf 6)" \ |
|
98 | 106 | -v col_off="$$(tput sgr0)" \ |
|
99 | 107 | '{ \ |
|
100 | 108 | printf "%s%*s%s ", col_on, -indent, $$1, col_off; \ |
|
101 | 109 | n = split($$2, words, " "); \ |
|
102 | 110 | line_length = ncol - indent; \ |
|
103 | 111 | for (i = 1; i <= n; i++) { \ |
|
104 | 112 | line_length -= length(words[i]) + 1; \ |
|
105 | 113 | if (line_length <= 0) { \ |
|
106 | 114 | line_length = ncol - indent - length(words[i]) - 1; \ |
|
107 | 115 | printf "\n%*s ", -indent, " "; \ |
|
108 | 116 | } \ |
|
109 | 117 | printf "%s ", words[i]; \ |
|
110 | 118 | } \ |
|
111 | 119 | printf "\n"; \ |
|
112 | 120 | }' |
General Comments 0
You need to be logged in to leave comments.
Login now