Skip to content

Commit

Permalink
ci: add --all-features arg to test ci step
Browse files Browse the repository at this point in the history
  • Loading branch information
biryukovmaxim committed Apr 30, 2024
1 parent a8bb957 commit b1ff97b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
- name: install cargo-nextest
uses: taiki-e/install-action@nextest
- name: Run tests
run: cargo nextest run --profile ci --workspace
run: cargo nextest run --profile ci --workspace --all-features
# TODO(eliza): punt on this for now because the generated JUnit report is
# missing some fields that this action needs to give good output.
# - name: Publish Test Report
Expand All @@ -146,7 +146,7 @@ jobs:
# check_name: "cargo test (Rust ${{ matrix.rust }} on ${{ matrix.os }})"
# check_title_template: "{{SUITE_NAME}}::{{TEST_NAME}}"
- name: Run doctests
run: cargo test --doc --workspace
run: cargo test --doc --workspace --all-features

test-build-wasm:
name: build tests (wasm)
Expand All @@ -158,7 +158,7 @@ jobs:
with:
target: wasm32-unknown-unknown
- name: build all tests
run: cargo test --no-run
run: cargo test --no-run --all-features

# all required checks except for the main test run (which we only require
# specific matrix combinations from)
Expand Down

0 comments on commit b1ff97b

Please sign in to comment.