mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
ee704e171d
note: TAGUUID is used to avoid sqlinjections by choosing a branch name
6 lines
348 B
Bash
Executable File
6 lines
348 B
Bash
Executable File
#!/bin/bash
|
|
export VELOREN_ASSETS="$(pwd)/assets"
|
|
rm -r target/debug/incremental/veloren_* || echo "all good" # TMP FIX FOR 2021-03-22-nightly
|
|
time cargo test --package veloren-common-assets asset_tweak::tests --features asset_tweak --lib &&
|
|
( rm -r target/debug/incremental* || echo "all good" ) && # TMP FIX FOR 2021-03-22-nightly
|
|
time cargo test |