From d3f56cf0e4a47c010e2ec6a67b6aeb54de5c9a91 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Thu, 7 Nov 2024 10:50:32 -0600 Subject: [PATCH] make the default variant 'coverage' This means that the variant no longer needs to be explicitly named and you can just run `make test`. --- ports/unix/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ports/unix/Makefile b/ports/unix/Makefile index 526955b1ea5c..cd0403a8f5df 100644 --- a/ports/unix/Makefile +++ b/ports/unix/Makefile @@ -4,8 +4,9 @@ ifdef VARIANT_DIR # the path as the variant name. VARIANT ?= $(notdir $(VARIANT_DIR:/=)) else -# If not given on the command line, then default to standard. -VARIANT ?= standard +# CIRCUITPY-CHANGE: default variant is coverage +# If not given on the command line, then default to coverage. +VARIANT ?= coverage VARIANT_DIR ?= variants/$(VARIANT) endif