diff --git a/.azure/pipelines/ci.yml b/.azure/pipelines/ci.yml index 7bcce882a5..5b27e88a77 100644 --- a/.azure/pipelines/ci.yml +++ b/.azure/pipelines/ci.yml @@ -81,12 +81,12 @@ jobs: - script: | dotnet run --project src/DotVVM.Samples.BasicSamples.AspNetCoreLatest \ --no-build \ - --configuration Release \ + --configuration $(BUILD_CONFIGURATION) \ --urls http://localhost:16018/ & - - task: DotNetCoreCLI@2 - inputs: - command: test - projects: src/DotVVM.Samples.Tests - arguments: --no-build --configuration $(BUILD_CONFIGURATION) - publishTestResults: true + - script: | + dotnet test src/DotVVM.Samples.Tests \ + --no-build \ + --configuration $(BUILD_CONFIGURATION) \ + --logger trx \ + --results-directory $(Agent.TempDirectory) continueOnError: true