File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -155,13 +155,13 @@ jobs:
155
155
run : |
156
156
python -m pip install -U uvloop
157
157
158
- - if : matrix.msrv != 'MSRV'
158
+ - if : ${{ matrix.msrv != 'MSRV' && matrix.python-version != '3.11-dev' && !startsWith(matrix.python-version, 'pypy') }}
159
159
name : Test
160
- run : cargo test --all-features
160
+ run : cargo test --all-features --target ${{ matrix.platform.rust-target }}
161
161
162
- - if : matrix.msrv == 'MSRV'
162
+ - if : ${{ matrix.msrv == 'MSRV' && matrix.python-version != '3.11-dev' && !startsWith(matrix.python-version, 'pypy') }}
163
163
name : Test (MSRV, --no-default-features)
164
- run : cargo test --no-default-features --features tokio,async-std-runtime,unstable-streams
164
+ run : cargo test --no-default-features --features tokio,async-std-runtime,unstable-streams --target ${{ matrix.platform.rust-target }}
165
165
166
166
env :
167
167
RUST_BACKTRACE : 1
You can’t perform that action at this time.
0 commit comments