chore: move systemtests to tests folder (#20290)

This commit is contained in:
Marko
2024-05-06 13:52:26 +00:00
committed by GitHub
parent ca15c9d0e7
commit 89ccbc13d1
14 changed files with 1 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/make -f
WAIT_TIME ?= 45s
all: test
test:
go test -mod=readonly -failfast -tags='system_test' ./... --wait-time=$(WAIT_TIME) --verbose
format:
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs gofumpt -w
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs misspell -w
find . -name '*.go' -type f -not -path "./vendor*" -not -path "./tests/system/vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs gci write --skip-generated -s standard -s default -s "prefix(cosmossdk.io)" -s "prefix(github.com/cosmos/cosmos-sdk)" --custom-order
.PHONY: all test format