Skip to content

Commit ba26566

Browse files
committed
update conformance make command
1 parent 3874ba1 commit ba26566

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/conformance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232
- name: Test conformance
33-
run: make conformance # TODO add: PYTHON=${{ steps.python.outputs.python-path }}
33+
run: make conformance PYTHON=${{ steps.python.outputs.python-path }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ test: $(BIN)/protovalidate-conformance generate install ## Run unit tests
4949

5050
.PHONY: conformance
5151
conformance: $(BIN)/protovalidate-conformance generate install ## Run conformance tests
52-
protovalidate-conformance $(CONFORMANCE_ARGS) pipenv -- run $(PYTHON) -m tests.conformance.runner
52+
protovalidate-conformance $(CONFORMANCE_ARGS) pipenv -- --python $(PYTHON) run python3 -m tests.conformance.runner
5353

5454
.PHONY: lint
5555
lint: install ## Lint code

0 commit comments

Comments
 (0)