Skip to content

Commit 5c6ff77

Browse files
committed
MAINT: Rename directories for misc and tests in the root
Reorganize the repo a bit by just renaming. We have a bunch of subdirectories for tests, name them all xtest- (for package-external test) so that they line up in directory listing. The images we keep around for docs we put in the directory misc/.
1 parent 4e8f636 commit 5c6ff77

File tree

14 files changed

+7
-7
lines changed

14 files changed

+7
-7
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ matrixmultiply-threading = ["matrixmultiply/threading"]
8080
debug = true
8181

8282
[workspace]
83-
members = ["ndarray-rand", "serialization-tests", "blas-tests"]
84-
exclude = ["numeric-tests"]
83+
members = ["ndarray-rand", "xtest-serialization", "xtest-blas"]
84+
exclude = ["xtest-numeric"]
8585

8686
[package.metadata.release]
8787
no-dev-version = true
File renamed without changes.
File renamed without changes.

scripts/all-tests.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ cargo build --verbose --features "$FEATURES"
1414
cargo test --verbose --features "$FEATURES"
1515
cargo test --manifest-path=ndarray-rand/Cargo.toml --no-default-features --verbose
1616
cargo test --manifest-path=ndarray-rand/Cargo.toml --features quickcheck --verbose
17-
cargo test --manifest-path=serialization-tests/Cargo.toml --verbose
18-
cargo test --manifest-path=blas-tests/Cargo.toml --verbose
17+
cargo test --manifest-path=xtest-serialization/Cargo.toml --verbose
18+
cargo test --manifest-path=xtest-blas/Cargo.toml --verbose
1919
cargo test --examples
20-
CARGO_TARGET_DIR=target/ cargo test --manifest-path=numeric-tests/Cargo.toml --verbose
20+
CARGO_TARGET_DIR=target/ cargo test --manifest-path=xtest-numeric/Cargo.toml --verbose
2121
([ "$CHANNEL" != "nightly" ] || cargo bench --no-run --verbose --features "$FEATURES")

scripts/cross-tests.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ TARGET=$3
1010
cross build -v --features="$FEATURES" --target=$TARGET
1111
cross test -v --no-fail-fast --features="$FEATURES" --target=$TARGET
1212
cross test -v --no-fail-fast --target=$TARGET --manifest-path=ndarray-rand/Cargo.toml --features quickcheck
13-
cross test -v --no-fail-fast --target=$TARGET --manifest-path=serialization-tests/Cargo.toml --verbose
14-
CARGO_TARGET_DIR=target/ cross test -v --no-fail-fast --target=$TARGET --manifest-path=numeric-tests/Cargo.toml
13+
cross test -v --no-fail-fast --target=$TARGET --manifest-path=xtest-serialization/Cargo.toml --verbose
14+
CARGO_TARGET_DIR=target/ cross test -v --no-fail-fast --target=$TARGET --manifest-path=xtest-numeric/Cargo.toml
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)