-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
92 lines (73 loc) · 2.54 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.PHONY: build clean clean-test clean-pyc clean-build loc help lint lint-py lint-js format format-py format-js sync-dev
.DEFAULT_GOAL := help
define BROWSER_PYSCRIPT
import os, webbrowser, sys
try:
from urllib import pathname2url
except:
from urllib.request import pathname2url
webbrowser.open("file://" + pathname2url(os.path.abspath(sys.argv[1])))
endef
export BROWSER_PYSCRIPT
define PRINT_HELP_PYSCRIPT
import re, sys
for line in sys.stdin:
match = re.match(r'^([a-zA-Z_-]+):.*?## (.*)$$', line)
if match:
target, help = match.groups()
print("%-20s %s" % (target, help))
endef
export PRINT_HELP_PYSCRIPT
BROWSER := python -c "$$BROWSER_PYSCRIPT"
help:
@python -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)
build: ## build application for containerization
manage.py set_git_commit
rm -rf build/ dist/
npm --prefix ./frontend run build
flit build --no-use-vcs
dev: ## Start developer environment.
./bin/dev.sh
test: ## This runs all of the tests.
# To run tests:
#
# py.test --ds=bmds_ui.settings.dev
#
# - Use -k <MATCH> for test matching (e.g. -k test_this_thing)
# - Use -s for displaying print statements (or use pdb)
#
@py.test
@npm --prefix ./frontend run test
test-integration: ## Run integration tests (requires `npm run start`)
@playwright install --with-deps chromium
@INTEGRATION_TESTS=1 py.test -sv tests/integration/
test-integration-debug: ## Run integration tests in debug mode (requires npm run start)
@playwright install --with-deps chromium
@INTEGRATION_TESTS=1 PWDEBUG=1 py.test -sv tests/integration/
coverage: ## Generate test coverage report
coverage run -m pytest
coverage html -d coverage_report
$(BROWSER) coverage_report/index.html
loc: ## Generate lines of code report
@cloc \
--exclude-dir=build,dist,migrations,node_modules,logs,private,public,scripts,vendor,venv \
--exclude-ext=json,yaml,svg,toml,ini \
--vcs=git \
--counted loc-files.txt \
--md \
.
lint: lint-py lint-js ## Check formatting issues
format: format-py format-js ## Fix formatting issues where possible
lint-py: ## Check python formatting issues
@ruff format . --check && ruff check .
format-py: ## Fix python formatting issues where possible
@ruff format . && ruff check . --fix --show-fixes
lint-js: ## Check javascript formatting issues
@npm --prefix ./frontend run lint
format-js: ## Fix javascript formatting issues where possible
@npm --prefix ./frontend run format
sync-dev: ## Sync dev environment after code checkout
python -m pip install -U pip uv
uv pip install -e ".[pg,dev]"
yarn --cwd frontend
manage.py migrate