forked from ajnisbet/opentopodata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
36 lines (25 loc) · 1.57 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
VERSION = `cat VERSION`
.PHONY: build run daemon test run-local black black-check update-requirements
build:
docker build --tag opentopodata:$(VERSION) --file docker/Dockerfile .
build-m1:
docker build --tag opentopodata:$(VERSION) --file docker/apple-silicon.Dockerfile .
run:
docker run --rm -it --volume $(shell pwd)/data:/app/data:ro -p 5000:5000 opentopodata:$(VERSION)
daemon:
docker run --rm -itd --volume $(shell pwd)/data:/app/data:ro -p 5000:5000 opentopodata:$(VERSION)
test: build black-check
docker run --rm -e DISABLE_MEMCACHE=1 --volume $(shell pwd)/htmlcov:/app/htmlcov opentopodata:$(VERSION) pytest --ignore=data --ignore=scripts --cov=opentopodata --cov-report html
test-m1: build-m1 black-check
docker run --rm -e DISABLE_MEMCACHE=1 --volume $(shell pwd)/htmlcov:/app/htmlcov opentopodata:$(VERSION) pytest --ignore=data --ignore=scripts --cov=opentopodata --cov-report html
run-local:
FLASK_APP=opentopodata/api.py FLASK_DEBUG=1 flask run --port 5000
black:
black --target-version py39 tests opentopodata
black-check:
docker run --rm opentopodata:$(VERSION) black --check --target-version py39 tests opentopodata
update-requirements: build
# pip-compile gets confused if there's already a requirements.txt file, and
# it can't be deleted without breaking the docker mount. So instead do the
# compiling in /tmp. Should run test suite afterwards.
docker run --rm -v $(shell pwd)/requirements.txt:/app/requirements.txt -w /tmp opentopodata:$(VERSION) /bin/bash -c "cp /app/requirements.in .; pip-compile requirements.in; cp requirements.txt /app/requirements.txt"