Skip to content

Commit

Permalink
Change directory to relayer before running unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kylesmartin committed Jul 18, 2022
1 parent c2e458e commit 8efa100
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ build_local: build_js build_contracts_local cp_gauntlet_idl
build_staging: build_js build_contracts_staging cp_gauntlet_idl

test_relay_unit:
go build -v ./relayer/pkg/...
go test -v ./relayer/pkg/...
cd ./relayer
go build -v ./pkg/...
go test -v ./pkg/...

test_smoke:
SELECTED_NETWORKS=solana NETWORK_SETTINGS=$(shell pwd)/tests/e2e/networks.yaml \
Expand Down

0 comments on commit 8efa100

Please sign in to comment.