mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
TestShareeLib Tests run.
This commit is contained in:
parent
bc82153835
commit
03d784c90c
1 changed files with 28 additions and 6 deletions
|
@ -12,6 +12,11 @@ pool:
|
||||||
variables:
|
variables:
|
||||||
buildConfiguration: 'Release'
|
buildConfiguration: 'Release'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
- job: RunUnittests
|
||||||
|
displayName: "Run Unit Tests"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- task: DotNetCoreCLI@2
|
- task: DotNetCoreCLI@2
|
||||||
|
@ -19,3 +24,20 @@ steps:
|
||||||
command: 'test'
|
command: 'test'
|
||||||
projects: 'TestLockItShared/TestLockItShared.csproj'
|
projects: 'TestLockItShared/TestLockItShared.csproj'
|
||||||
configuration: '$(buildConfiguration)'
|
configuration: '$(buildConfiguration)'
|
||||||
|
|
||||||
|
- task: DotNetCoreCLI@2
|
||||||
|
inputs:
|
||||||
|
command: 'test'
|
||||||
|
projects: 'TestShareeLib/TestShareeLib.csproj'
|
||||||
|
configuration: '$(buildConfiguration)'
|
||||||
|
|
||||||
|
# Infos about test filters see
|
||||||
|
# https://docs.microsoft.com/en-us/previous-versions/jj155796(v=vs.140)?redirectedfrom=MSDN
|
||||||
|
- task: VSTest@2
|
||||||
|
inputs:
|
||||||
|
testSelector: 'testAssemblies'
|
||||||
|
testAssemblyVer2: |
|
||||||
|
**\TestShareeLib.dll
|
||||||
|
!**\obj\**
|
||||||
|
searchFolder: '$(System.DefaultWorkingDirectory)'
|
||||||
|
testFiltercriteria: 'TestCategory!=Explicit&TestCategory!=RequiresCOPRI&TestCategory!=RequiresCOPRI.Live&TestCategory!=RequiresCOPRI.Devel'
|
Loading…
Reference in a new issue