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:
118118 - uses : Swatinem/rust-cache@v2
119119 - name : Install openblas
120120 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
123121 - run : ./scripts/blas-integ-tests.sh $BLAS_MSRV
124122
125123 miri :
@@ -169,7 +167,7 @@ jobs:
169167 - uses : Swatinem/rust-cache@v2
170168 - name : Install cargo-careful
171169 run : cargo install cargo-careful
172- - run : cargo careful test -Zcareful-sanitizer --features="$FEATURES"
170+ - run : cargo careful nextest run -Zcareful-sanitizer --features="$FEATURES"
173171
174172 docs :
175173 # 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
1212cargo build -v --no-default-features
1313
1414# ndarray with no features
15- cargo test -p ndarray -v --no-default-features
15+ cargo nextest run -p ndarray -v --no-default-features
1616# 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
1818# all with features
19- cargo test -v --features " $FEATURES " $QC_FEAT
19+ cargo nextest run -v --features " $FEATURES " $QC_FEAT
2020# 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
2222
2323# 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
2626if [[ -z " ${MSRV} " ]] && [ " $CHANNEL " != " $MSRV " ]; then
2727 ./scripts/blas-integ-tests.sh " $FEATURES " $CHANNEL
2828fi
2929
3030# Examples
31- cargo test --examples
31+ cargo nextest run --examples
3232
3333# Benchmarks
3434([ " $CHANNEL " != " nightly" ] || cargo bench --no-run --verbose --features " $FEATURES " )
Original file line number Diff line number Diff line change 44set -e
55
66# 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"
1515
1616# General tests
1717# 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