From 4ea851290eb2af735fc318c9c09e2b4c5df2fa35 Mon Sep 17 00:00:00 2001 From: srdtrk Date: Wed, 26 Jun 2024 13:39:53 +0400 Subject: [PATCH] imp: updated just file --- justfile | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/justfile b/justfile index e6ec1e3..d1315e4 100644 --- a/justfile +++ b/justfile @@ -1,6 +1,6 @@ # Build all wasm using cosmwasm/optimizer:0.15.1 docker image build-optimize: - echo "Compiling optimized wasm..." + @echo "Compiling optimized wasm..." docker run --rm -t -v "$(pwd)":/code \ --mount type=volume,source="$(basename "$(pwd)")_cache",target=/target \ --mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \ @@ -14,16 +14,21 @@ lint: # Generate JSON schema files for all contracts in the project in a directory named `schemas` generate-schemas: mkdir -p schemas - echo "Generating JSON schema files for ics02-client..." + @echo "Generating JSON schema files for ics02-client..." cargo run --bin ics02_schema cp schema/cw-ibc-lite-ics02-client.json schemas/ - echo "Generating JSON schema files for ics07-tendermint..." + @echo "Generating JSON schema files for ics07-tendermint..." cargo run --bin ics07_schema cp schema/cw-ibc-lite-ics07-tendermint.json schemas/ - echo "Generating JSON schema files for ics26-router..." + @echo "Generating JSON schema files for ics26-router..." cargo run --bin ics26_schema cp schema/cw-ibc-lite-ics26-router.json schemas/ - echo "Generating JSON schema files for ics20-transfer..." + @echo "Generating JSON schema files for ics20-transfer..." cargo run --bin ics20_schema cp schema/cw-ibc-lite-ics20-transfer.json schemas/ rm -r schema + +# Run the e2e tests +e2e-test testname: + @echo "Running {{testname}} test..." + cd e2e/interchaintestv8 && go test -v -run={{testname}}