Skip to content

Commit 7b1d964

Browse files
committed
.github: remove --all-features from tests
1 parent 9466e22 commit 7b1d964

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.cirrus.yml

Lines changed: 3 additions & 3 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
@@ -57,9 +57,9 @@ task:
5757
<< : *TEST
5858
i386_test_script:
5959
- . $HOME/.cargo/env
60-
- cargo build --target i686-unknown-freebsd --all-features
60+
- cargo build --target i686-unknown-freebsd
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)