newapkbuild: do not run cargo test with --release

It takes a longer time to compile and, most importantly, it may cause
unnecessary rebuild of everything in the package phase (installation).
This commit is contained in:
Jakub Jirutka 2021-12-16 00:23:48 +01:00 committed by Natanael Copa
parent bf1dae494b
commit 140d8ab82c

View File

@ -156,7 +156,7 @@ __EOF__
check_rust() {
cat >>APKBUILD<<__EOF__
cargo test --frozen --release
cargo test --frozen
__EOF__
}