8 lines
201 B
Bash
Executable File
8 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
# Extra arguments are forwarded to each workspace's `cargo test`.
|
|
set -eu
|
|
cd "$(dirname "$0")/.."
|
|
for workspace in event-model server app-rust; do
|
|
(cd "$workspace" && cargo test "$@")
|
|
done
|