Skip to content

Commit

Permalink
Revert slow tests back to --release profile (#2247)
Browse files Browse the repository at this point in the history
Co-authored-by: tbro <[email protected]>
  • Loading branch information
tbro and tbro authored Nov 1, 2024
1 parent a982dd7 commit e8acf9c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/slowtest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
submodules: recursive

- name: Configure Environment
run: PATH="$PWD/target/debug:$PATH"
run: PATH="$PWD/target/release:$PATH"

- name: Enable Rust Caching
uses: Swatinem/rust-cache@v2
Expand All @@ -53,12 +53,12 @@ jobs:

- name: Build
run: |
cargo build --locked --bin diff-test --profile test
cargo nextest run --locked --workspace --all-features --no-run
cargo build --locked --bin diff-test --release
cargo nextest run --locked --release --workspace --all-features --no-run
timeout-minutes: 90

- name: Slow Test
env:
NEXTEST_PROFILE: slow
run: cargo nextest run --locked --workspace --all-features --verbose --no-fail-fast --nocapture
run: cargo nextest run --locked --release --workspace --all-features --verbose --no-fail-fast --nocapture
timeout-minutes: 40

0 comments on commit e8acf9c

Please sign in to comment.