Skip to content

Commit d3f56cf

Browse files
committed
make the default variant 'coverage'
This means that the variant no longer needs to be explicitly named and you can just run `make test`.
1 parent 3a0b97d commit d3f56cf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ports/unix/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ ifdef VARIANT_DIR
44
# the path as the variant name.
55
VARIANT ?= $(notdir $(VARIANT_DIR:/=))
66
else
7-
# If not given on the command line, then default to standard.
8-
VARIANT ?= standard
7+
# CIRCUITPY-CHANGE: default variant is coverage
8+
# If not given on the command line, then default to coverage.
9+
VARIANT ?= coverage
910
VARIANT_DIR ?= variants/$(VARIANT)
1011
endif
1112

0 commit comments

Comments
 (0)