Skip to content

Commit

Permalink
Set integration-test-latest to continue_on_error
Browse files Browse the repository at this point in the history
Closes informalsystems#304

We want to run the integration test against the latest version, but
don't want it to clutter CI with failures. Tests against the pinned
stable version still fail.

Also fixes some whitespace.

Signed-off-by: Shon Feder <shon@informal.systems>
  • Loading branch information
Shon Feder committed Jun 15, 2020
1 parent 704e244 commit 10ae32b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Rust
on:
on:
pull_request:
paths-ignore:
- 'docs/**'
- "docs/**"
push:
paths-ignore:
- 'docs/**'
- "docs/**"
branches:
- master
jobs:
Expand Down Expand Up @@ -85,6 +85,9 @@ jobs:
command: test
args: -p tendermint --test integration --no-fail-fast -- --ignored

# NOTE(shonfeder): This job is configured to continue on error, to avoid
# failing CI due to integration failures with unstable/unreleased versions
# of tendermint-go.
test-integration-latest:
runs-on: ubuntu-latest
services:
Expand All @@ -101,6 +104,7 @@ jobs:
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
continue_on_error: true
with:
command: test
args: -p tendermint --test integration --no-fail-fast -- --ignored
Expand Down

0 comments on commit 10ae32b

Please sign in to comment.