-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (28 loc) · 918 Bytes
/
Makefile
File metadata and controls
41 lines (28 loc) · 918 Bytes
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
build-local:
cd ops/containers ; make build-local ; cd ../..
build-local-no-cache:
cd ops/containers ; make build-local-no-cache ; cd ../..
run-local:
cd ops/containers ; make run-local ; cd ../..
exec-web:
cd ops/containers ; make exec-web ; cd ../..
build-selenium:
cd ops/containers ; make build-selenium ; cd ../..
run-selenium:
$(MAKE) -C ops/containers run-selenium-target-local
reqs-install:
pip install -r requirements/requirements.txt
reqs-install-dev:
pip install -r requirements/requirements.dev.txt
generate generate-requirements:
cd ops/containers ; make requirements ; cd ../..
retrieve-certs:
cd ops/containers ; make retrieve-certs ; cd ../..
migrate:
cd ops/containers ; make migrate ; cd ../..
collectstatic:
cd ops/containers ; make collectstatic ; cd ../..
unit-test:
python manage.py test --exclude=integration
integration-test:
python manage.py test --tag=integration