File tree Expand file tree Collapse file tree 4 files changed +11
-13
lines changed Expand file tree Collapse file tree 4 files changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -118,8 +118,6 @@ jobs:
118
118
- uses : Swatinem/rust-cache@v2
119
119
- name : Install openblas
120
120
run : sudo apt-get install libopenblas-dev gfortran
121
- - run : cargo tree -p blas-tests -i openblas-src -F blas-tests/openblas-system
122
- - run : cargo tree -p blas-tests -i openblas-build -F blas-tests/openblas-system
123
121
- run : ./scripts/blas-integ-tests.sh $BLAS_MSRV
124
122
125
123
miri :
@@ -169,7 +167,7 @@ jobs:
169
167
- uses : Swatinem/rust-cache@v2
170
168
- name : Install cargo-careful
171
169
run : cargo install cargo-careful
172
- - run : cargo careful test -Zcareful-sanitizer --features="$FEATURES"
170
+ - run : cargo careful nextest run -Zcareful-sanitizer --features="$FEATURES"
173
171
174
172
docs :
175
173
# if: ${{ github.event_name == 'merge_group' }}
Original file line number Diff line number Diff line change @@ -12,23 +12,23 @@ QC_FEAT=--features=ndarray-rand/quickcheck
12
12
cargo build -v --no-default-features
13
13
14
14
# ndarray with no features
15
- cargo test -p ndarray -v --no-default-features
15
+ cargo nextest run -p ndarray -v --no-default-features
16
16
# ndarray with no_std-compatible features
17
- cargo test -p ndarray -v --no-default-features --features approx
17
+ cargo nextest run -p ndarray -v --no-default-features --features approx
18
18
# all with features
19
- cargo test -v --features " $FEATURES " $QC_FEAT
19
+ cargo nextest run -v --features " $FEATURES " $QC_FEAT
20
20
# all with features and release (ignore test crates which is already optimized)
21
- cargo test -v -p ndarray -p ndarray-rand --release --features " $FEATURES " $QC_FEAT --lib --tests
21
+ cargo nextest run -v -p ndarray -p ndarray-rand --release --features " $FEATURES " $QC_FEAT --lib --tests
22
22
23
23
# BLAS tests
24
- cargo test -p ndarray --lib -v --features blas
25
- cargo test -p blas-mock-tests -v
24
+ cargo nextest run -p ndarray --lib -v --features blas
25
+ cargo nextest run -p blas-mock-tests -v
26
26
if [[ -z " ${MSRV} " ]] && [ " $CHANNEL " != " $MSRV " ]; then
27
27
./scripts/blas-integ-tests.sh " $FEATURES " $CHANNEL
28
28
fi
29
29
30
30
# Examples
31
- cargo test --examples
31
+ cargo nextest run --examples
32
32
33
33
# Benchmarks
34
34
([ " $CHANNEL " != " nightly" ] || cargo bench --no-run --verbose --features " $FEATURES " )
Original file line number Diff line number Diff line change 4
4
set -e
5
5
6
6
# BLAS tests
7
- cargo test -p blas-tests -v --features blas-tests/openblas-system
8
- cargo test -p numeric-tests -v --features numeric-tests/test_blas
7
+ cargo nextest run -p blas-tests -v --features blas-tests/openblas-system
8
+ cargo nextest run -p numeric-tests -v --features numeric-tests/test_blas
Original file line number Diff line number Diff line change @@ -15,4 +15,4 @@ RUSTFLAGS="-Zrandomize-layout"
15
15
16
16
# General tests
17
17
# Note that we exclude blas feature because Miri can't do cblas_gemm
18
- cargo miri test -v -p ndarray -p ndarray-rand --features approx,serde
18
+ cargo miri nextest run -v -p ndarray -p ndarray-rand --features approx,serde
You can’t perform that action at this time.
0 commit comments