1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
[tasks.test-misc]
dependencies = [
"test-proptest",
"test-rust-fuzz",
"test-rocket-traits",
"test-borsh",
"test-rkyv",
"test-rand"
]
[tasks.test-proptest]
command = "cargo"
args = ["test", "--workspace", "--no-default-features", "--features=proptest", "proptest_tests", "--", "--skip", "generated"]
[tasks.test-rust-fuzz]
command = "cargo"
args = ["test", "--workspace", "--no-default-features", "--features=rust-fuzz", "rust_fuzz_tests", "--", "--skip", "generated"]
[tasks.test-rocket-traits]
command = "cargo"
args = ["test", "--workspace", "--features=rocket-traits", "rocket_tests"]
[tasks.test-borsh]
command = "cargo"
args = ["test", "--workspace", "--features=borsh", "borsh_tests", "--", "--skip", "generated"]
[tasks.test-ndarray]
command = "cargo"
args = ["test", "--workspace", "--features=ndarray", "nd_array_tests", "--", "--skip", "generated"]
[tasks.test-rkyv]
command = "cargo"
args = ["test", "--workspace", "--features=rkyv", "--features=rkyv-safe", "rkyv_tests", "--", "--skip", "generated"]
[tasks.test-rand]
dependencies = [
"test-rand-0_8",
"test-rand-0_9"
]
[tasks.test-rand-0_8]
command = "cargo"
args = ["test", "--workspace", "--features=rand", "rand_tests", "--", "--skip", "generated"]
[tasks.test-rand-0_9]
command = "cargo"
args = ["test", "--workspace", "--features=rand-0_9", "rand_tests", "--", "--skip", "generated"]
|