From 72b30a0b4432dda0227325e484bcccaae1e81914 Mon Sep 17 00:00:00 2001 From: Alexander Luzgarev Date: Sun, 14 Oct 2018 16:17:37 +0200 Subject: [PATCH] Add test to Pipelines --- azure-pipelines.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bc83a58..29a64e0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,3 +12,8 @@ variables: steps: - script: dotnet build --configuration $(buildConfiguration) displayName: 'dotnet build $(buildConfiguration)' +- task: DotNetCoreCLI@2 + inputs: + command: test + projects: '**/*Tests/*.csproj' + arguments: '--configuration $(buildConfiguration)'