From 5c39ef2f76100526ab7951fc5b4ca3436cd721c4 Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 19 Oct 2020 14:23:02 -0400 Subject: [PATCH] Fixup Windows installer and API test --- azure-pipelines.yml | 6 +++--- setup/{radarr.iss => prowlarr.iss} | 0 src/coverlet.runsettings | 2 +- test.sh | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename setup/{radarr.iss => prowlarr.iss} (100%) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5c4476851..5161aafa3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -638,17 +638,17 @@ stages: osName: 'Linux' imageName: 'ubuntu-18.04' pattern: 'Prowlarr.**.linux-core-x64.tar.gz' - failBuild: true + failBuild: false Mac: osName: 'Mac' imageName: 'macos-10.14' pattern: 'Prowlarr.**.osx-core-x64.tar.gz' - failBuild: true + failBuild: false Windows: osName: 'Windows' imageName: 'windows-2019' pattern: 'Prowlarr.**.windows-core-x64.zip' - failBuild: true + failBuild: false pool: vmImage: $(imageName) diff --git a/setup/radarr.iss b/setup/prowlarr.iss similarity index 100% rename from setup/radarr.iss rename to setup/prowlarr.iss diff --git a/src/coverlet.runsettings b/src/coverlet.runsettings index 1db6f988e..48c143c92 100644 --- a/src/coverlet.runsettings +++ b/src/coverlet.runsettings @@ -5,7 +5,7 @@ opencover - [Prowlarr.*.Test]*,[Prowlarr.Test.*]*,[Prowlarr.Api*]*,[Marr.Data]*,[MonoTorrent]* + [Prowlarr.*.Test]*,[Prowlarr.Test.*]*,[Prowlarr.Api*]* diff --git a/test.sh b/test.sh index 4e6bf7ad7..a917ecbdf 100755 --- a/test.sh +++ b/test.sh @@ -4,7 +4,7 @@ TYPE=$2 COVERAGE=$3 WHERE="Category!=ManualTest" TEST_PATTERN="*Test.dll" -FILES=( "Prowlarr.Api.Test.dll" "Prowlarr.Automation.Test.dll" "Prowlarr.Common.Test.dll" "Prowlarr.Core.Test.dll" "Prowlarr.Host.Test.dll" "Prowlarr.Integration.Test.dll" "Prowlarr.Libraries.Test.dll" "Prowlarr.Mono.Test.dll" "Prowlarr.Update.Test.dll" "Prowlarr.Windows.Test.dll" ) +FILES=( "Prowlarr.Api.V1.Test.dll" "Prowlarr.Automation.Test.dll" "Prowlarr.Common.Test.dll" "Prowlarr.Core.Test.dll" "Prowlarr.Host.Test.dll" "Prowlarr.Integration.Test.dll" "Prowlarr.Libraries.Test.dll" "Prowlarr.Mono.Test.dll" "Prowlarr.Update.Test.dll" "Prowlarr.Windows.Test.dll" ) ASSMEBLIES="" TEST_LOG_FILE="TestLog.txt"