summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-05-03 16:25:11 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-05-03 16:25:11 +0200
commita94316159904e37ada2b932757a2594ef796efe0 (patch)
treefa30ee5b774148f262cd75edf454d5f73fec8763
parent211ccd35392b0d64e042b97b19708a87a862498a (diff)
Makefile: Force only Python as a viable wrapper
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 938e891..b662ad3 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,8 @@ test: test-go test-wrappers
test-go:
go test ./...
-WRAPPERS ?= $(notdir $(patsubst %/,%,$(wildcard wrappers/*/)))
+#WRAPPERS ?= $(notdir $(patsubst %/,%,$(wildcard wrappers/*/)))
+WRAPPERS=python
# Enable parallelism if -j is specified, but first execute build
test-wrappers: build