From 7dcb18ea9018dd8b0e5bfc980558310b9128e572 Mon Sep 17 00:00:00 2001 From: Martijn Laarman Date: Mon, 1 Mar 2021 13:05:25 +0100 Subject: [PATCH] Set test only one to true when running integration tests --- appveyor.yml | 2 +- azure-pipelines.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index b54e9b1c97f..3b105c99281 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,7 +8,7 @@ environment: install: - cmd: choco install dotnet-5.0-sdk --version 5.0.103 build_script: - - cmd: build.bat canary + - cmd: build.bat canary nuget: disable_publish_on_pr: true diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 698a53894fd..d10384f8f8b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -106,7 +106,7 @@ jobs: latest7: esVersion: 'latest-7' steps: - - script: 'build.bat integrate-one $(esVersion) "readonly,writable,bool,xpack"' + - script: 'build.bat integrate-one $(esVersion) "readonly,writable,bool,xpack" random:test_only_one' displayName: '$(esVersion) windows integration tests' - task: PublishTestResults@2 condition: succeededOrFailed() @@ -154,7 +154,7 @@ jobs: - task: UseDotNet@2 inputs: version: '5.0.103' - - script: './build.sh integrate-one $(esVersion) "readonly,writable"' + - script: './build.sh integrate-one $(esVersion) "readonly,writable" random:test_only_one' displayName: '$(esVersion) linux integration tests' - task: PublishTestResults@2 condition: succeededOrFailed()