Skip to content

Commit

Permalink
chore: change end to end test run setup (MystenLabs#743)
Browse files Browse the repository at this point in the history
  • Loading branch information
akichidis authored Aug 11, 2022
1 parent c2e369f commit fa08e85
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions narwhal/.github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ env:
RUST_BACKTRACE: short

jobs:
ignored:
name: Run long-running tests
end-to-end-tests:
name: Run long-running end-to-end tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -39,9 +39,11 @@ jobs:
- uses: bmwill/rust-cache@v1 # Fork of 'Swatinem/rust-cache' which allows caching additional paths
with:
path: ~/.cargo/registry/src/**/librocksdb-sys-*
- name: cargo test
# We run only the integration tests that are ignored under the primary package.
# These are considered the end-to-end "slow" tests for us
- name: cargo nextest
run: |
cargo nextest run --profile ci --run-ignored ignored-only
cargo nextest run -E 'kind(test) + package(primary)' --run-ignored ignored-only
beta:
name: Run test on the beta channel
Expand Down

0 comments on commit fa08e85

Please sign in to comment.