Skip to content

Commit

Permalink
Disable MBT tests on CI due to flakiness (#2253)
Browse files Browse the repository at this point in the history
  • Loading branch information
soareschen committed Jun 1, 2022
1 parent 90ffe2b commit 65a0189
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -199,15 +199,16 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
args: -p ibc-integration-test --no-fail-fast --no-run
- env:
RUST_LOG: debug
RUST_BACKTRACE: 1
NO_COLOR_LOG: 1
run: |
nix shell \
.#${{ matrix.gaiad }} \
.#apalache \
-c cargo \
test -p ibc-integration-test --features mbt --no-fail-fast -- \
--nocapture --test-threads=1 mbt
args: -p ibc-integration-test --features mbt --no-fail-fast --no-run
# Disable running MBT tests until flakiness is addressed
# - env:
# RUST_LOG: debug
# RUST_BACKTRACE: 1
# NO_COLOR_LOG: 1
# run: |
# nix shell \
# .#${{ matrix.gaiad }} \
# .#apalache \
# -c cargo \
# test -p ibc-integration-test --features mbt --no-fail-fast -- \
# --nocapture --test-threads=1 mbt
2 changes: 1 addition & 1 deletion relayer-cli/src/commands/query/channel_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl Runnable for QueryChannelClientCmd {

match chain.query_channel_client_state(QueryChannelClientStateRequest {
port_id: self.port_id.clone(),
channel_id: self.channel_id.clone(),
channel_id: self.channel_id,
}) {
Ok(cs) => Output::success(cs).exit(),
Err(e) => Output::error(format!("{}", e)).exit(),
Expand Down

0 comments on commit 65a0189

Please sign in to comment.