Skip to content

Instantly share code, notes, and snippets.

@johndowns
Created November 7, 2018 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johndowns/8913091568012c75d02bb232b0d5a898 to your computer and use it in GitHub Desktop.
Save johndowns/8913091568012c75d02bb232b0d5a898 to your computer and use it in GitHub Desktop.
variables:
- name: FunctionHostPath
value: C:\\npm\\prefix\\node_modules\\azure-functions-core-tools\\bin\\func.dll
- group: IntegrationTestConnectionStrings
steps:
- task: DotNetCoreCLI@2
displayName: Build
inputs:
projects: src/FunctionApp.sln
- task: Npm@1
displayName: Install Azure Functions Core Tools
inputs:
command: custom
verbose: false
customCommand: 'install -g azure-functions-core-tools'
- task: DotNetCoreCLI@2
displayName: Run Integration Tests
inputs:
command: test
projects: 'src/**/*.IntegrationTest.csproj'
arguments: '--no-build'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment