Skip to content

Commit 53d9812

Browse files
author
Alex | Interchain Labs
authored
chore: clean up scripting for store testing (#24820)
1 parent a0120c9 commit 53d9812

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ jobs:
445445
if: env.GIT_DIFF
446446
run: |
447447
cd store
448-
cd streaming/abci/examples/file && go build . && cd ../../../..
448+
(cd streaming/abci/examples/file && go build .)
449449
go test -ldflags "-r /usr/local/lib" -mod=readonly -timeout 30m -coverprofile=coverage.out -covermode=atomic -tags='norace ledger test_ledger_mock' ./...
450450
451451
test-log:

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ ARGS += -tags "$(test_tags)"
236236
SUB_MODULES = $(shell find . -type f -name 'go.mod' -print0 | xargs -0 -n1 dirname | sort | grep -v './tests/systemtests')
237237
CURRENT_DIR = $(shell pwd)
238238
run-tests:
239+
@(cd store/streaming/abci/examples/file && go build .)
239240
ifneq (,$(shell which tparse 2>/dev/null))
240241
@echo "Starting unit tests"; \
241242
finalec=0; \

0 commit comments

Comments
 (0)