forked from viamrobotics/viam-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
65 lines (48 loc) · 1.48 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
clean:
find . -type d -name '__pycache__' | xargs rm -rf
_lint:
flake8 --exclude=**/gen/**,*_grpc.py,*_pb2.py,*_pb2.pyi,.tox
lint:
poetry run $(MAKE) _lint
_format:
black --exclude ".*/gen/.*" ./src
isort ./src
format:
poetry run $(MAKE) _format
_buf: clean
rm -rf src/viam/gen
buf generate buf.build/viamrobotics/api
buf generate buf.build/viamrobotics/goutils
protol -e googl* --in-place -s _grpc.py -s _pb2.py -s _pb2.pyi -o src/viam/gen buf buf.build/viamrobotics/api
protol -e googl* --in-place -s _grpc.py -s _pb2.py -s _pb2.pyi -o src/viam/gen buf buf.build/viamrobotics/goutils
find src/viam/gen -type d -exec touch {}/__init__.py \;
buf:
poetry run $(MAKE) _buf
_better_imports:
python3 -m etc.generate_proto_import -v
@echo Add init files for specific documented protos
better_imports:
poetry run $(MAKE) _better_imports
_test:
coverage run -m pytest && coverage html
test:
poetry run $(MAKE) _test
_test_docs:
pytest --nbmake "./docs"
test_docs:
kill -9 `ps aux | grep "[e]xamples.server.v1.server" | awk '{print $$2}'` || true
poetry run python3 -m examples.server.v1.server 0.0.0.0 9091 quiet &
sleep 3
poetry run $(MAKE) _test_docs
kill -9 `ps aux | grep "[e]xamples.server.v1.server" | awk '{print $$2}'`
tox:
poetry run tox
_documentation:
cd docs && $(MAKE) clean html
documentation:
poetry run $(MAKE) _documentation
package: clean buf better_imports format test
@echo "TODO: Create pip-installable package"
install:
poetry install
sh etc/postinstall.sh