Skip to content

Commit

Permalink
nextest
Browse files Browse the repository at this point in the history
Signed-off-by: James Bornholt <bornholt@amazon.com>
  • Loading branch information
jamesbornholt committed Mar 4, 2024
1 parent 129aa18 commit ac6d70e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ jobs:
with:
toolchain: stable
override: true
- name: Install Rust tools
uses: taiki-e/install-action@v2
with:
tool: nextest
- name: Restore Cargo cache
id: restore-cargo-cache
uses: actions/cache/restore@v3
Expand All @@ -91,10 +95,10 @@ jobs:
uses: ./.github/actions/install-dependencies
with:
fuseVersion: ${{ matrix.fuseVersion }}
- name: Build tests
run: cargo test --features $RUST_FEATURES --no-run
- name: Run tests
run: cargo test --features $RUST_FEATURES
run: cargo nextest run --features $RUST_FEATURES
env:
RUST_LOG: mountpoint=trace,awscrt=debug
- name: Save Cargo cache
uses: actions/cache/save@v3
if: inputs.environment != 'PR integration tests'
Expand Down

0 comments on commit ac6d70e

Please sign in to comment.