File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 77 pull_request :
88
99jobs :
10- build :
10+ test :
1111 runs-on : ubuntu-latest
1212 strategy :
1313 matrix :
Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ grpc-client: install download
3030 @echo Generating Proto Sources
3131 @echo $(OUTPUT )
3232 @mkdir -p $(OUTPUT )
33+ # protoc doesn't create the __init__.py for the nitric module, so we need to create it.
34+ @mkdir -p $(OUTPUT)/nitric/
35+ @touch $(OUTPUT)/nitric/__init__.py
3336 @python3 -m grpc_tools.protoc -I $(CONTRACTS) --python_betterproto_out=$(OUTPUT) ./contracts/proto/*/*/*.proto
3437
3538
@@ -39,7 +42,7 @@ license:
3942 @licenseheaders -t tools/apache-2.tmpl -o " Nitric Technologies Pty Ltd" -y 2021 -n " Nitric Python 3 SDK" -u " https://github.com/nitrictech/python-sdk" -d tests
4043 @licenseheaders -t tools/apache-2.tmpl -o " Nitric Technologies Pty Ltd" -y 2021 -n " Nitric Python 3 SDK" -u " https://github.com/nitrictech/python-sdk" -d tools
4144
42- build : clean install license docs
45+ build : clean grpc-client license docs
4346 @echo Building sdist and wheel
4447 @python3 setup.py sdist bdist_wheel
4548
You can’t perform that action at this time.
0 commit comments