Skip to content

Commit 0b9dfcd

Browse files
committed
.github: remove --all-features from tests
1 parent 3ff7354 commit 0b9dfcd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.cirrus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ test: &TEST
3030
<< : *BUILD
3131
test_script:
3232
- . $HOME/.cargo/env || true
33-
- $TOOL test --target $TARGET --all-features
33+
- $TOOL test --target $TARGET
3434

3535
# Test FreeBSD in a full VM. Test the i686 target too, in the
3636
# same VM. The binary will be built in 32-bit mode, but will execute on a
@@ -59,7 +59,7 @@ task:
5959
- . $HOME/.cargo/env
6060
- cargo build --target i686-unknown-freebsd --all-features
6161
- cargo doc --no-deps --target i686-unknown-freebsd --all-features
62-
- cargo test --target i686-unknown-freebsd --all-features
62+
- cargo test --target i686-unknown-freebsd
6363
i386_feature_script:
6464
- . $HOME/.cargo/env
6565
- if [ -z "$NOHACK" ]; then cargo hack check --each-feature --target i686-unknown-freebsd; fi

.github/actions/test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ runs:
2929
3030
- name: test
3131
shell: bash
32-
run: ${{ inputs.SUDO }} $(which ${{ inputs.TOOL }}) test --target ${{ inputs.TARGET }} --all-features
32+
run: ${{ inputs.SUDO }} $(which ${{ inputs.TOOL }}) test --target ${{ inputs.TARGET }}

0 commit comments

Comments
 (0)