5 lines
251 B
Bash
Executable File
5 lines
251 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Run the full test suite from the repo root (see scripts/dotnet.sh for why).
|
|
# Usage: scripts/run-tests.sh [extra dotnet test args]
|
|
set -euo pipefail
|
|
exec "$(cd "$(dirname "$0")" && pwd)/dotnet.sh" test db-subclass-to-dto.sln "$@" |