Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 75ab8aa

Browse files
committedAug 5, 2021
Use more specific override variable name for unit test regex
Task has the capability for a default template value to be specified, which may be overridden by an environment variable set by the task user. The previous variable name chosen for this purpose was somewhat ambiguous.
1 parent b338cfb commit 75ab8aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ tasks:
7272
- |
7373
go test \
7474
-short \
75-
-run '{{default ".*" .TEST_REGEX}}' \
7675
{{default "-v" .GOFLAGS}} \
76+
-run '{{default ".*" .GO_TEST_REGEX}}' \
7777
-coverprofile=coverage_unit.txt \
7878
{{default .DEFAULT_GO_PACKAGES .GO_PACKAGES}}
7979

0 commit comments

Comments
 (0)
Please sign in to comment.