Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/c96f29f1e82ecb29dbd9a322f169c8d8e67cf54d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
4 deletions
@ -22,7 +22,7 @@ rm -f "$TEST_LOG_FILE"
# Uncomment to log test output to a file instead of the console
export RADARR_TESTS_LOG_OUTPUT = "File"
VSTEST_PARAMS = "-- Platform:x64 -- logger:nunit;LogFilePath=TestResult.xml"
VSTEST_PARAMS = "-- logger:nunit;LogFilePath=TestResult.xml"
if [ " $PLATFORM " = "Mac" ] ; then
@ -60,13 +60,13 @@ for i in "${FILES[@]}";
do ASSEMBLIES = " $ASSEMBLIES $TEST_DIR / $i "
done
DOTNET_PARAMS = " $ASSEMBLIES -- TestCaseF ilter:$WHERE $VSTEST_PARAMS "
DOTNET_PARAMS = " $ASSEMBLIES -- f ilter:$WHERE $VSTEST_PARAMS "
if [ " $COVERAGE " = "Coverage" ] ; then
dotnet vstest $DOTNET_PARAMS --settings:"src/coverlet.runsettings" --ResultsD irectory:./CoverageResults
dotnet test $DOTNET_PARAMS --settings:"src/coverlet.runsettings" --results-d irectory:./CoverageResults
EXIT_CODE = $?
elif [ " $COVERAGE " = "Test" ] ; then
dotnet vstest $DOTNET_PARAMS
dotnet test $DOTNET_PARAMS
EXIT_CODE = $?
else
echo "Run Type must be provided as third argument: Coverage or Test"