mirror of
https://github.com/penpot/penpot.git
synced 2025-04-30 00:26:19 +02:00
🔧 Return the test output
This commit is contained in:
parent
580b60550c
commit
08b44e1857
1 changed files with 6 additions and 0 deletions
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
set -x
|
||||||
|
|
||||||
_SCRIPT_DIR=$(dirname $0);
|
_SCRIPT_DIR=$(dirname $0);
|
||||||
pushd $_SCRIPT_DIR;
|
pushd $_SCRIPT_DIR;
|
||||||
|
|
||||||
|
@ -8,4 +10,8 @@ export SKIA_BINARIES_URL="https://github.com/penpot/skia-binaries/releases/downl
|
||||||
export _CARGO_PARAMS="--target=x86_64-unknown-linux-gnu";
|
export _CARGO_PARAMS="--target=x86_64-unknown-linux-gnu";
|
||||||
|
|
||||||
cargo test $_CARGO_PARAMS --bin render_wasm -- --show-output
|
cargo test $_CARGO_PARAMS --bin render_wasm -- --show-output
|
||||||
|
|
||||||
|
# Exit with the same status code as cargo test
|
||||||
|
exit $?
|
||||||
|
|
||||||
popd
|
popd
|
||||||
|
|
Loading…
Add table
Reference in a new issue