Skip to content

Commit bd3a29b

Browse files
author
Alessio Treglia
authored
fix check-test-* targets (#7675)
Closes: #7673
1 parent fc46423 commit bd3a29b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ $(TEST_TARGETS): run-tests
222222

223223
# check-* compiles and collects tests without running them
224224
# note: go test -c doesn't support multiple packages yet (https://github.com/golang/go/issues/15513)
225-
CHECK_TEST_TARGETS := test-unit test-unit-amino
226-
check-test-unit: test-unit
227-
check-test-unit-amino: test-unit-amino
225+
CHECK_TEST_TARGETS := check-test-unit check-test-unit-amino
226+
check-test-unit: ARGS=-tags='cgo ledger test_ledger_mock norace'
227+
check-test-unit-amino: ARGS=-tags='ledger test_ledger_mock test_amino norace'
228228
$(CHECK_TEST_TARGETS): EXTRA_ARGS=-run=none
229229
$(CHECK_TEST_TARGETS): run-tests
230230

0 commit comments

Comments
 (0)