Files
git.stella-ops.org/scripts/update-redhat-fixtures.sh
Vladimir Moushkov 55464f8498
Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
up
2025-10-29 19:24:20 +02:00

15 lines
517 B
Bash

#!/usr/bin/env bash
set -euo pipefail
repo_root=$(git rev-parse --show-toplevel)
project="$repo_root/src/Concelier/__Tests/StellaOps.Concelier.Connector.Distro.RedHat.Tests/StellaOps.Concelier.Connector.Distro.RedHat.Tests.csproj"
if [[ ! -f "$project" ]]; then
echo "Red Hat connector test project not found at $project" >&2
exit 1
fi
export UPDATE_GOLDENS=1
# Disable shared Concelier test infra so the test project can restore standalone packages.
dotnet test "$project" -p:UseConcelierTestInfra=false "$@"