This commit is contained in:
Brett V. Forsgren 2022-04-06 15:10:22 -06:00
Родитель 8211ea330c
Коммит 24456c1544
2 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -38,8 +38,7 @@ try {
if ($ci) { if ($ci) {
$arguments += "-ci" $arguments += "-ci"
} }
if ($test -And -Not($ci)) { if ($test) {
# CI runs unit tests elsewhere, so only promote the `-test` switch if we're not running CI
$arguments += '-test' $arguments += '-test'
} }

Просмотреть файл

@ -60,8 +60,7 @@ done
if [[ "$no_dotnet" != true ]]; then if [[ "$no_dotnet" != true ]]; then
# promote switches to arguments # promote switches to arguments
if [[ "$run_tests" == true ]] && [[ "$is_ci" != true ]]; then if [[ "$run_tests" == true ]]; then
# CI runs unit tests elsewhere, so only promote the `--test` switch if we're not running CI
args="$args --test" args="$args --test"
fi fi