-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
44 lines (36 loc) · 1.11 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
export PYTHONASYNCIODEBUG=1
export PYTHONWARNINGS=default
SHELL=/bin/bash
usr := $(shell id -u):$(shell id -g)
.PHONY: test coverage doc build gencerts example
test:
docker-compose -f docker-compose-test.yml run --rm test python -m unittest
coverage:
docker-compose -f docker-compose-test.yml run --rm -u $(usr) test bash -c \
" \
python -m coverage erase \
&& python -m coverage run \
--branch --source=aiowstunnel --omit '*/test_*' -m unittest \
&& python -m coverage report -m \
&& python -m coverage html \
"
doc:
docker-compose -f docker-compose-test.yml run --rm -u $(usr) \
-w /aiowstunnel/docs/ test bash -c \
" \
rm -rf _build && mkdir _build \
&& sphinx-build -b html . _build \
"
build:
docker-compose -f docker-compose-develop.yml run --rm react npm run build
-rm -rf aiowstunnel/resources
mkdir -p aiowstunnel/resources
cp -r aiowstunnel/healthcheck_frontend/build/* aiowstunnel/resources/
gencerts:
cd examples/certificates && ./create.sh
example: build
docker-compose -f docker-compose-example.yml up
distrbute: build
rm dist/*
python setup.py sdist
twine upload dist/*