-
-
Notifications
You must be signed in to change notification settings - Fork 968
/
Makefile
38 lines (26 loc) · 1.06 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
.PHONY: all ci clean collectstatics compile-scss compile-scss-debug install run test watch-scss
APP_LIST ?= accounts aggregator blog contact dashboard djangoproject docs foundation fundraising legacy members releases svntogit tracdb
SCSS = djangoproject/scss
STATIC = djangoproject/static
ci: test
@python -m coverage report
collectstatics: compile-scss
python -m manage collectstatic --noinput
compile-scss:
python -m pysassc $(SCSS)/output.scss $(STATIC)/css/output.css --style=compressed
compile-scss-debug:
python -m pysassc $(SCSS)/output.scss $(STATIC)/css/output.css --sourcemap
install:
python -m pip install --requirement requirements/dev.txt
isort:
python -m isort $(APP_LIST)
isort-check:
python -m isort --check $(APP_LIST)
migrations-check:
python -m manage makemigrations --check --dry-run
run:
python -m manage runserver 0.0.0.0:8000
test: migrations-check
@python -m coverage run --source=. --module manage test --verbosity 2 $(APP_LIST)
watch-scss:
watchmedo shell-command --patterns=*.scss --recursive --command="make compile-scss-debug" $(SCSS)