Skip to content

Commit

Permalink
chore: use ./mvnw not mvn in tests (knative#1988)
Browse files Browse the repository at this point in the history
Signed-off-by: Matej Vasek <mvasek@redhat.com>
  • Loading branch information
matejvasek committed Sep 27, 2023
1 parent a75698c commit 8f3492a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,12 @@ test-python: ## Test Python templates
cd templates/python/http && python3 test_func.py && rm -rf __pycache__

test-quarkus: ## Test Quarkus templates
cd templates/quarkus/cloudevents && mvn -q test && mvn clean
cd templates/quarkus/http && mvn -q test && mvn clean
cd templates/quarkus/cloudevents && ./mvnw -q test && ./mvnw clean
cd templates/quarkus/http && ./mvnw -q test && ./mvnw clean

test-springboot: ## Test Spring Boot templates
cd templates/springboot/cloudevents && mvn -q test && mvn clean
cd templates/springboot/http && mvn -q test && mvn clean
cd templates/springboot/cloudevents && ./mvnw -q test && ./mvnw clean
cd templates/springboot/http && ./mvnw -q test && ./mvnw clean

test-rust: ## Test Rust templates
cd templates/rust/cloudevents && cargo -q test && cargo clean
Expand Down

0 comments on commit 8f3492a

Please sign in to comment.