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"