-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (32 loc) · 787 Bytes
/
Makefile
File metadata and controls
43 lines (32 loc) · 787 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
42
43
default: proto service frontend
proto:
$(MAKE) -wC proto
service:
$(MAKE) -wC service
frontend:
$(MAKE) -wC frontend
py:
./orgviz.py
docker: container
container:
buildah bud
docs:
$(MAKE) -wC docs
./docs/node_modules/.bin/antora antora-playbook.yml
# ./orgviz.py --profilePictures --profilePictureDirectory examples/profilePics/ -T png -I examples/ExampleCompany.org --dpi 300
# mv orgviz.png docs/ExampleCompany.png
# asciidoctor README.adoc
tests: test
test:
coverage run --branch --source orgviz -m pytest
coverage report
coverage html
tests-debian:
python3-coverage run --branch --source orgviz -m pytest
python3-coverage report
python3-coverage html
lint:
pylint-3 orgviz
lint-debian:
pylint orgviz
.PHONY: docs default test default service proto frontend