1
0
mirror of https://github.com/XFox111/GUTSchedule.git synced 2026-04-22 06:58:01 +03:00

Parser improvements and fixes, Tests (#23)

* Added unit tests, fixed and improved parser

* Updated translation files

* Updated unit tests to work with credentials

* Updated validation CI config

* Updated changelogs, improved CI/CD processes
This commit is contained in:
Michael Gordeev
2020-04-20 17:51:42 +03:00
committed by GitHub
parent 8579f9bbc6
commit a07cb6fd3e
20 changed files with 267 additions and 36 deletions
+23 -1
View File
@@ -43,4 +43,26 @@ steps:
platform: 'x64'
solution: '**/**.UWP.csproj'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:AppxPackageSigningEnabled=false'
msbuildArgs: '/p:AppxPackageSigningEnabled=false'
- task: FileTransform@2
displayName: 'Update test credential'
inputs:
folderPath: '$(System.DefaultWorkingDirectory)'
xmlTransformationRules:
jsonTargetFiles: '**/TestCredential.json'
- task: VSBuild@1
displayName: 'Build Tests'
inputs:
solution: '**\*.Test.csproj'
- task: VSTest@2
displayName: 'Run Tests'
inputs:
testSelector: 'testAssemblies'
testAssemblyVer2: |
**\*.Test.dll
!**\*TestAdapter.dll
!**\obj\**
searchFolder: '$(System.DefaultWorkingDirectory)'