forked from microsoft/durabletask-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
19 lines (14 loc) · 813 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
init:
pip3 install -r requirements.txt
test-unit:
pytest -m "not e2e" --verbose
test-e2e:
pytest -m e2e --verbose
install:
python3 -m pip install .
gen-proto:
curl -o durabletask/internal/orchestrator_service.proto https://raw.githubusercontent.com/microsoft/durabletask-protobuf/refs/heads/main/protos/orchestrator_service.proto
curl -H "Accept: application/vnd.github.v3+json" "https://api.github.com/repos/microsoft/durabletask-protobuf/commits?path=protos/orchestrator_service.proto&sha=main&per_page=1" | jq -r '.[0].sha' >> durabletask/internal/PROTO_SOURCE_COMMIT_HASH
python3 -m grpc_tools.protoc --proto_path=. --python_out=. --pyi_out=. --grpc_python_out=. ./durabletask/internal/orchestrator_service.proto
rm durabletask/internal/*.proto
.PHONY: init test-unit test-e2e gen-proto install