Skip to content

Commit

Permalink
Add env var for Service Bus live tests (Azure#5343)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeharder authored Mar 12, 2019
1 parent b962efd commit 6f21d73
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .azure-pipelines/client.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# External variables:
# ProjectFile - The project to build and test. This variable is defined in pipeline web ui because we want to be able to provide it at queue time and that isn't supported in yaml yet.
# MaxParallelTestJobs - Maximum number of parallel test jobs
# AzConfigConnectionString - The connection string used for testing the AzConfig service. This is set in the pipeline web ui as it needs different values for public vs internal.
# ServiceBusConnectionString - The connection string used for testing the Service Bus service. This is set in the pipeline web ui as it needs different values for public vs internal.

trigger:
- master
Expand Down Expand Up @@ -58,6 +60,7 @@ jobs:
- job: 'Test'

strategy:
maxParallel: $[ variables['MaxParallelTestJobs'] ]
matrix:
Linux:
OSName: 'Linux'
Expand Down Expand Up @@ -99,6 +102,7 @@ jobs:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_MULTILEVEL_LOOKUP: 0
AZ_CONFIG_CONNECTION: $(AzConfigConnectionString)
azure-service-bus-dotnet/connectionstring: $(ServiceBusConnectionString)
inputs:
command: test
projects: '$(ProjectFile)'
Expand Down

0 comments on commit 6f21d73

Please sign in to comment.