Closed onlyabhi52 closed 4 years ago
The issue is a YAML parse one I think, a few points
searchCrossProjectForPRs
parameter is only of use if you are using Handlebars based templates, as this is the only template format that expose the PR information. So you could miss this parameter out.Here is a block of YAML I use to test the extension, using an inline handlebars template. Hope that helps
steps:
- task: richardfennellBM.BM-VSTS-XplatGenerateReleaseNotes-DEV1.XplatGenerate-Release-Notes.XplatGenerateReleaseNotes@2
displayName: 'Generate Release Notes based on Release Comparision API V2 handbars'
inputs:
outputfile: '$(System.DefaultWorkingDirectory)\handbars.md'
outputVariableName: OutputText
templateLocation: InLine
inlinetemplate: |
**Build Number** - $(Build.BuildNumber)
**Build Id** - $(Build.BuildId)
**Build Source Branch** - $(Build.SourceBranch)
**Build Name** - $(Build.DefinitionName)
**Build Reason** - $(Build.Reason)
# Associated Pull Requests ({{pullRequests.length}})
{{#forEach pullRequests}}
{{#if isFirst}}### Associated Pull Requests (only shown if PR) {{/if}}
* **PR {{this.id}}** {{this.title}}
{{/forEach}}
# Global list of WI ({{workItems.length}})
{{#forEach workItems}}
{{#if isFirst}}## Associated Work Items (only shown if WI) {{/if}}
* **{{this.id}}** {{lookup this.fields 'System.Title'}}
- **WIT** {{lookup this.fields 'System.WorkItemType'}}
- **Tags** {{lookup this.fields 'System.Tags'}}
- **Assigned** {{#with (lookup this.fields 'System.AssignedTo')}} {{displayName}} {{/with}}
{{/forEach}}
# Global list of CS ({{commits.length}})
{{#forEach commits}}
{{#if isFirst}}### Associated commits{{/if}}
* ** ID{{this.id}}**
- **Message:** {{this.message}}
- **Commited by:** {{this.author.displayName}}
- **FileCount:** {{this.changes.length}}
{{#forEach this.changes}}
- **File path (TFVC or TfsGit):** {{this.item.path}}
- **File filename (GitHub):** {{this.filename}}
{{/forEach}}
{{/forEach}}
# Global list of test ({{tests.length}})
{{#forEach tests}}
{{#if isFirst}}### Tests {{/if}}
* ** ID{{this.id}}**
- Name: {{this.testCase.name}}
- Outcome: {{this.outcome}}
{{/forEach}}
searchCrossProjectForPRs: true
Let me try this @rfennell and update you regarding this.
`task: richardfennellBM.BM-VSTS-XplatGenerateReleaseNotes.XplatGenerate-Release-Notes.XplatGenerateReleaseNotes@2 displayName: Generate Release Notes based on Release Comparison API inputs: outputfile: $(PublishPath)/ReleaseNotes.md templateLocation: InLine inlinetemplate: |
**Build Number** - $(Build.BuildNumber)
**Build Id** - $(Build.BuildId)
**Build Source Branch** - $(Build.SourceBranch)
**Build Name** - $(Build.DefinitionName)
**Build Reason** - $(Build.Reason)
### DESCRIPTION
@@WILOOP:RN-OVERVIEW@@
${widetail.fields['System.Description']}
@@WILOOP:RN-OVERVIEW@@
### FEATURES
@@WILOOP:RN-FEATURES@@
${widetail.fields['System.Description']}
@@WILOOP:RN-FEATURES@@
### Associated work items
@@WILOOP@@
* **${widetail.fields['System.WorkItemType']} #${widetail.id}**
Assigned by: ${widetail.fields['System.AssignedTo']} -
${widetail.fields['System.Title']}
@@WILOOP@@
### Associated commits
@@CSLOOP@@
* **ID ${csdetail.id} ** ${csdetail.message}
@@CSLOOP@@ `
Finally it worked with this one but instead of fetching the details for the single PR it is fetching details of all the PR and Workitem getting closed in the system.
If this is the first time you have run a build of this definition it will return a lot of WI/CS/PR as it does not have a previous build to compare against.
I think the next build will only show the differences
@rfennell i have tried this with multiple builds now but it is still showing the complete lists of the builds but not the details about the individual PR which was used to complete the build.
Can you create a detailed log (run the build with a variable set system.debug=true
) and upload it to the issue and I will have a look to see what is going on.
@rfennell Sure let me do that for you .
@rfennell `2020-06-25T11:55:46.2218997Z ##[debug]Evaluating condition for step: 'Generate Release Notes based on Release Comparison API' 2020-06-25T11:55:46.2220463Z ##[debug]Evaluating: SucceededNode() 2020-06-25T11:55:46.2221268Z ##[debug]Evaluating SucceededNode: 2020-06-25T11:55:46.2222304Z ##[debug]=> True 2020-06-25T11:55:46.2222973Z ##[debug]Result: True 2020-06-25T11:55:46.2223618Z ##[section]Starting: Generate Release Notes based on Release Comparison API 2020-06-25T11:55:46.2234998Z ============================================================================== 2020-06-25T11:55:46.2235440Z Task : Generate Release Notes (Crossplatform) 2020-06-25T11:55:46.2235894Z Description : Generates a release notes file in a format of your choice from the build or release history 2020-06-25T11:55:46.2236266Z Version : 2.52.2 2020-06-25T11:55:46.2236526Z Author : Black Marble 2020-06-25T11:55:46.2237025Z Help : Version: 2.52.2. More Information 2020-06-25T11:55:46.2237622Z ============================================================================== 2020-06-25T11:55:46.3789116Z ##[debug]agent.TempDirectory=/home/vsts/work/_temp 2020-06-25T11:55:46.3832530Z ##[debug]loading inputs and endpoints 2020-06-25T11:55:46.3836891Z ##[debug]loading INPUT_OUTPUTFILE 2020-06-25T11:55:46.3848651Z ##[debug]loading INPUT_TEMPLATELOCATION 2020-06-25T11:55:46.3851463Z ##[debug]loading INPUT_TEMPLATEFILE 2020-06-25T11:55:46.3852867Z ##[debug]loading INPUT_INLINETEMPLATE 2020-06-25T11:55:46.3854342Z ##[debug]loading INPUT_EMPTYSETTEXT 2020-06-25T11:55:46.3855205Z ##[debug]loading INPUT_DELIMITER 2020-06-25T11:55:46.3856565Z ##[debug]loading INPUT_FIELDEQUALITY 2020-06-25T11:55:46.3857902Z ##[debug]loading INPUT_ANYFIELDCONTENT 2020-06-25T11:55:46.3859237Z ##[debug]loading INPUT_STOPONREDEPLOY 2020-06-25T11:55:46.3860506Z ##[debug]loading INPUT_SORTWI 2020-06-25T11:55:46.3861799Z ##[debug]loading INPUT_SHOWONLYPRIMARY 2020-06-25T11:55:46.3863110Z ##[debug]loading INPUT_SEARCHCROSSPROJECTFORPRS 2020-06-25T11:55:46.3864210Z ##[debug]loading INPUT_DUMPPAYLOADTOCONSOLE 2020-06-25T11:55:46.3865225Z ##[debug]loading INPUT_DUMPPAYLOADTOFILE 2020-06-25T11:55:46.3866242Z ##[debug]loading INPUT_DUMPPAYLOADFILENAME 2020-06-25T11:55:46.3867214Z ##[debug]loading INPUT_REPLACEFILE 2020-06-25T11:55:46.3870102Z ##[debug]loading INPUT_APPENDTOFILE 2020-06-25T11:55:46.3870513Z ##[debug]loading INPUT_GETPARENTSANDCHILDREN 2020-06-25T11:55:46.3871134Z ##[debug]loading ENDPOINT_AUTH_SYSTEMVSSCONNECTION 2020-06-25T11:55:46.3874537Z ##[debug]loading ENDPOINT_AUTH_SCHEME_SYSTEMVSSCONNECTION 2020-06-25T11:55:46.3875040Z ##[debug]loading ENDPOINT_AUTH_PARAMETER_SYSTEMVSSCONNECTION_ACCESSTOKEN 2020-06-25T11:55:46.3881399Z ##[debug]loading SECRET_AWS_SECRETACCESSKEY 2020-06-25T11:55:46.3882592Z ##[debug]loading SECRET_AZURE_DEVOPS_EXT_PAT 2020-06-25T11:55:46.3884229Z ##[debug]loading SECRET_SONARQUBE_ENDPOINT 2020-06-25T11:55:46.3885957Z ##[debug]loading SECRET_SGID 2020-06-25T11:55:46.3887614Z ##[debug]loading SECRET_AWS_ACCESSKEYID 2020-06-25T11:55:46.3889251Z ##[debug]loading SECRET_SYSTEM_ACCESSTOKEN 2020-06-25T11:55:46.3891554Z ##[debug]loaded 27 2020-06-25T11:55:46.3924833Z ##[debug]Agent.ProxyUrl=undefined 2020-06-25T11:55:46.3925262Z ##[debug]Agent.CAInfo=undefined 2020-06-25T11:55:46.3925636Z ##[debug]Agent.ClientCert=undefined 2020-06-25T11:55:46.3926030Z ##[debug]Agent.SkipCertValidation=undefined 2020-06-25T11:55:46.6075327Z ##[debug]Starting Tag XplatGenerateReleaseNotes task 2020-06-25T11:55:46.6075979Z ##[debug]System.TeamFoundationCollectionUri= 2020-06-25T11:55:46.6076483Z ##[debug]System.TeamProject= 2020-06-25T11:55:46.6082834Z ##[debug]templateLocation=InLine 2020-06-25T11:55:46.6086626Z ##[debug]templatefile=/home/vsts/work/1/s 2020-06-25T11:55:46.6089744Z ##[debug]inlinetemplate=# BUILD NOTES
Build Number - 1.2.0.20200625115110
Build Id - 29152
Build Source Branch - refs/heads/develop
Build Name - Quote Manager Build And Containerization Pipeline
Build Reason - Manual
@@WILOOP:RN-OVERVIEW@@
${widetail.fields['System.Description']}
@@WILOOP:RN-OVERVIEW@@
@@WILOOP:RN-FEATURES@@
${widetail.fields['System.Description']}
@@WILOOP:RN-FEATURES@@
@@WILOOP@@
@@WILOOP@@
@@CSLOOP@@
@@CSLOOP@@ 2020-06-25T11:55:46.6091978Z ##[debug]outputfile=src/Ssp.QuoteManager.Server/bin/release/netcoreapp2.2/publish/ReleaseNotes.md 2020-06-25T11:55:46.6114746Z ##[debug]outputVariableName=undefined 2020-06-25T11:55:46.6115183Z ##[debug]emptySetText=None 2020-06-25T11:55:46.6116318Z ##[debug]delimiter=: 2020-06-25T11:55:46.6116694Z ##[debug]anyFieldContent=* 2020-06-25T11:55:46.6118399Z ##[debug]showOnlyPrimary=False 2020-06-25T11:55:46.6120093Z ##[debug]replaceFile=True 2020-06-25T11:55:46.6121186Z ##[debug]appendToFile=True 2020-06-25T11:55:46.6122561Z ##[debug]getParentsAndChildren=False 2020-06-25T11:55:46.6123703Z ##[debug]searchCrossProjectForPRs=False 2020-06-25T11:55:46.6124964Z ##[debug]fieldEquality== 2020-06-25T11:55:46.6126161Z ##[debug]overrideStageName=undefined 2020-06-25T11:55:46.6128380Z ##[debug]stopOnRedeploy=False 2020-06-25T11:55:46.6129567Z ##[debug]SortWi=False 2020-06-25T11:55:46.6130899Z ##[debug]customHandlebarsExtensionCode=undefined 2020-06-25T11:55:46.6131885Z ##[debug]customHandlebarsExtensionFile=undefined 2020-06-25T11:55:46.6132813Z ##[debug]customHandlebarsExtensionFolder=undefined 2020-06-25T11:55:46.6133690Z ##[debug]gitHubPat=undefined 2020-06-25T11:55:46.6135927Z ##[debug]dumpPayloadToFile=false 2020-06-25T11:55:46.6139497Z ##[debug]dumpPayloadToConsole=false 2020-06-25T11:55:46.6140228Z ##[debug]dumpPayloadFileName=/home/vsts/work/1/a\payload.json 2020-06-25T11:55:46.6141537Z ##[debug]Build.BuildId=29152 2020-06-25T11:55:46.6142494Z ##[debug]Release.ReleaseId=undefined 2020-06-25T11:55:46.6145616Z ##[debug]Release.DefinitionId=undefined 2020-06-25T11:55:46.6146559Z ##[debug]Release_EnvironmentName=undefined 2020-06-25T11:55:46.6147228Z ##[debug]ReleaseNotes.Fix349=undefined 2020-06-25T11:55:46.6189029Z ##[debug]Using System.AccessToken 2020-06-25T11:55:46.6192977Z ##[debug]System.AccessToken=*** 2020-06-25T11:55:46.6193458Z ##[debug]Creating the credential handler 2020-06-25T11:55:46.9280819Z Getting the current build details 2020-06-25T11:55:47.3531777Z Enriched change cd65fbfbe6183d0235753c74a908705ecb0a3aa1 of type TfsGit 2020-06-25T11:55:47.3552872Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3564364Z Enriched change 27df25a363ab24fea4ba892477b1a14c02f858a2 of type TfsGit 2020-06-25T11:55:47.3565268Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3565879Z Enriched change 4a365333472b6cc3a8f809e280b22fe22fc55b7a of type TfsGit 2020-06-25T11:55:47.3566368Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3566733Z Enriched change be0fb00bbcc315c5f5b03a978bfcbd2f138ebd7a of type TfsGit 2020-06-25T11:55:47.3567122Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3567496Z Enriched change 1710049c86f404400b6299c161b8054bf914f66f of type TfsGit 2020-06-25T11:55:47.3567854Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3568225Z Enriched change 6e3ee4d8964f11f29becabdf457f05c4b0868a92 of type TfsGit 2020-06-25T11:55:47.3568579Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3568951Z Enriched change 5877e05b4006490a9d2afd5f02643073b429a6b7 of type TfsGit 2020-06-25T11:55:47.3569322Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3569676Z Enriched change 80b322662870839d13220cbd4cfe0f12698ce9b0 of type TfsGit 2020-06-25T11:55:47.3601959Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3602955Z Enriched change e80b07d6bf31f36ef063cf81490a6d430de224a4 of type TfsGit 2020-06-25T11:55:47.3603459Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3606164Z Enriched change 0776c41982e3ae2fc784ab2c6ea6f98a43e639c4 of type TfsGit 2020-06-25T11:55:47.3606538Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3606909Z Enriched change 96319fe18dcefd138faf6f45d2289a7d4a79d509 of type TfsGit 2020-06-25T11:55:47.3607277Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3607634Z Enriched change 4100aac782fc9e7ac48de3a624610de526965f26 of type TfsGit 2020-06-25T11:55:47.3608002Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3608371Z Enriched change 48288cde91b7d3dbf0398b921d25760caf0f061c of type TfsGit 2020-06-25T11:55:47.3608729Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3609097Z Enriched change 4f1668240af52661e22e7e6490e9b9ec99de3446 of type TfsGit 2020-06-25T11:55:47.3609463Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3609838Z Enriched change 9a0ed7fa48759eafcb777c85bfaf761f3a6e824d of type TfsGit 2020-06-25T11:55:47.3610206Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3610559Z Enriched change 0647c0a54978effc0eef105a80270a56b3c9dc35 of type TfsGit 2020-06-25T11:55:47.3610925Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3611290Z Enriched change 02bf112094bf2f2e731f2558ea80a94d8ec310f0 of type TfsGit 2020-06-25T11:55:47.3611641Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3612007Z Enriched change 852e02ba5bdab5f9ae4b450fd0ed9e9a7c7d9bef of type TfsGit 2020-06-25T11:55:47.3612375Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3612725Z Enriched change aa94d669b70c427f0b0c428e3a705fa5c172c998 of type TfsGit 2020-06-25T11:55:47.3613095Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3613447Z Enriched change c5ac8c899ae9e184ba3542b4a682544472ca7231 of type TfsGit 2020-06-25T11:55:47.3613819Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3614184Z Enriched change 1409c97c673d873ea439032b5cf4483f4fbe4e95 of type TfsGit 2020-06-25T11:55:47.3614536Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3614900Z Enriched change c6ef42713e78aacd1e392fb293f4405ff2f90e77 of type TfsGit 2020-06-25T11:55:47.3615264Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3615613Z Enriched change 886fe0aae214995d723f0f4cab74867145edbcf7 of type TfsGit 2020-06-25T11:55:47.3615977Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3616342Z Enriched change 7d3538323a80260ce4c0fad35bd840db6808278f of type TfsGit 2020-06-25T11:55:47.3616692Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3617059Z Enriched change 2ab6d02314196588b58be5b716a930131e8ddc1d of type TfsGit 2020-06-25T11:55:47.3617408Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3617777Z Enriched change 700384c569bdccce2aad7933398460aa4fb414b3 of type TfsGit 2020-06-25T11:55:47.3618142Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3618491Z Enriched change 5ac3ebb9b575ee8859de42a15465d7bd240d18a4 of type TfsGit 2020-06-25T11:55:47.3618853Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3619217Z Enriched change ab631aff30b33b6e17fe3c064c90207781ab7109 of type TfsGit 2020-06-25T11:55:47.3619568Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3619936Z Enriched change 915b71fa44ce7d3b8f803e2fd75a99dc1b77c020 of type TfsGit 2020-06-25T11:55:47.3620465Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3620921Z Enriched change 3e6131ae375b65917eb630152bb7a3eb0965e923 of type TfsGit 2020-06-25T11:55:47.3621564Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3622031Z Enriched change cf8d17c48a94919fc3bf69a72d8aedf980a0a651 of type TfsGit 2020-06-25T11:55:47.3622609Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3623080Z Enriched change afd4da052b348989945be0a38cd58d026fe63466 of type TfsGit 2020-06-25T11:55:47.3623544Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3623985Z Enriched change cfa6fe6daf7b01d775b6aede261501a09933af8a of type TfsGit 2020-06-25T11:55:47.3624452Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3624919Z Enriched change 63f86af0f7891562aef58b7650e41fa88ab5ba09 of type TfsGit 2020-06-25T11:55:47.3625374Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3625821Z Enriched change 567be1c00822ada1321c3053caf469099da8728f of type TfsGit 2020-06-25T11:55:47.3626283Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3626758Z Enriched change f7a2bb8f0f41f676bf590cc44096d696f75ad7c6 of type TfsGit 2020-06-25T11:55:47.3627213Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3627686Z Enriched change c9f85ede179872015b36fd093411cf50226cdb1c of type TfsGit 2020-06-25T11:55:47.3628150Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3628599Z Enriched change 1a4d60966a21a4579aaa9dbdd696f835da9d0670 of type TfsGit 2020-06-25T11:55:47.3629066Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3629526Z Enriched change ec93b6ae6fa3b6d845ae5650779e75412575842f of type TfsGit 2020-06-25T11:55:47.3629989Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3630436Z Enriched change b38682121e4a2c2e641a19851865cc612dbdc9eb of type TfsGit 2020-06-25T11:55:47.3630896Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3631358Z Enriched change 64ae7e335651978753ce08898b6ba764da099d8c of type TfsGit 2020-06-25T11:55:47.3631814Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3632285Z Enriched change f53a37660a9862416af8594b76944e861b75f73f of type TfsGit 2020-06-25T11:55:47.3632748Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3633194Z Enriched change 38b9786c6e73efb6c09bcabf28ef88abce1d90be of type TfsGit 2020-06-25T11:55:47.3633656Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3634119Z Enriched change f72c073214fadc8b0949f28f77c9a6fcfdf379c8 of type TfsGit 2020-06-25T11:55:47.3634559Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3635020Z Enriched change 3e6b91723b1559c360b6ce3d0807da4febed1405 of type TfsGit 2020-06-25T11:55:47.3635487Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3635949Z Enriched change 418ab389b6868aa8ae52fac3e0d52cb45bf680c4 of type TfsGit 2020-06-25T11:55:47.3636344Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3636837Z Enriched change dd81ef582792eed7990d7de695c959000b51dc06 of type TfsGit 2020-06-25T11:55:47.3658315Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3659184Z Enriched change 1a98e383720aaec2ae2ac5547b5dee78e2bf1e28 of type TfsGit 2020-06-25T11:55:47.3659665Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3660141Z Enriched change 831eb664cd5f5a4d82761f59f601a42b77d25a4f of type TfsGit 2020-06-25T11:55:47.3660613Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.3661079Z Enriched change aed1268a5a2f8ecac0216d5b0c2f8b4c4ecf2f2d of type TfsGit 2020-06-25T11:55:47.3661534Z Cannot enriched as location URL not in dev.azure.com format 2020-06-25T11:55:47.8749896Z ##[debug]Adding tests for test run 1053532 2020-06-25T11:55:48.7253715Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7263001Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7270188Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7277362Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7284563Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7291675Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7298762Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7309826Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7316740Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7323593Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7330708Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7342346Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7344195Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7351010Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7357746Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7366213Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7373345Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7380184Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7388147Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7394980Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7403681Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7409936Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7417244Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7423818Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7431303Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7438133Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7445138Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7451941Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7458794Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7465929Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7473145Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7480681Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7487508Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7495135Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7502248Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7509370Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7516460Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7523598Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7530838Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7538416Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7546988Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7553355Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7560688Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7567723Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7576096Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7583995Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7592220Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7600186Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7607675Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7615895Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7628252Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7643003Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7689013Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7694834Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7701988Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7708519Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7714715Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7720888Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7727280Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7734638Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7739229Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7790158Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7790763Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7791281Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7791837Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7797369Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7804157Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7810267Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7816128Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7823221Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7829388Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7835533Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7841685Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7848037Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7854124Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7861203Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7867426Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7873538Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7879673Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7885978Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7893596Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7896594Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7904432Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7911068Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7920962Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7923654Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7930555Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7937656Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7943905Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7950084Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7955760Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7963034Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7969449Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7975605Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7982082Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7988336Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.7994467Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8000579Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8006866Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8013390Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8020000Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8026194Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8032353Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8038513Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8045926Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8050524Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8057178Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8063346Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8069514Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8075684Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8081838Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8088095Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8094250Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8101282Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8107488Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8113708Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8119807Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8126196Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8132248Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8138549Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8144781Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8150788Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8156924Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8163123Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8171615Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8176172Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8183766Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8191257Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8200286Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8206513Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8213449Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8218387Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8224986Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8231214Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8237382Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8243502Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8249909Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8256030Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8262379Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8268503Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8274650Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8280789Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8287148Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8293205Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8299379Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8305545Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8311620Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8317720Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8325230Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8331641Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8337819Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8343934Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8350095Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8355815Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8362319Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8368595Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8374741Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8380882Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8387001Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8395903Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8400522Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8412331Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8419525Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8425816Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8432112Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8438238Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8444460Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8450071Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8456714Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8462904Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8469059Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8475232Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8507588Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8561165Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8561733Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8562221Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8562707Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8563191Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8563680Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8564505Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8564989Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8565484Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8567061Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8567558Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8568040Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8568564Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8573412Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8580041Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8586204Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8592338Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8598456Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8604759Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8610888Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8617060Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8623181Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8629339Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8635471Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8642752Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8649437Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8655620Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8661517Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8667565Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8674088Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8680206Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8686564Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8692605Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8698743Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8704875Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8711026Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8717174Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8723297Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8729677Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8735851Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8758109Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8758660Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8764768Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8772421Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8776611Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8783293Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8789385Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8795950Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8802526Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8808828Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8814944Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8821089Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8827189Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8833409Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8839522Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8845686Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8851882Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8858129Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8864196Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8870314Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8876435Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8882525Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8888821Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8894939Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8901041Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8907193Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8913571Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8920026Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8926226Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8933103Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8939530Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8945978Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8952893Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8959820Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8966437Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8972837Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8979307Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8985705Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8992165Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.8998575Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9005363Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9011630Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9018044Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9024502Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9030902Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9037376Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9044226Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9050339Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9056790Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9063229Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9069668Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9076115Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9082537Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9089143Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9095514Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9101942Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9108750Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9115669Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9121785Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9130619Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9136868Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9142892Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9149023Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9155164Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9161316Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9169003Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9175179Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9180861Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9188059Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9194179Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9200330Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9206234Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9212827Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9218904Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9225058Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9231236Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9237347Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9243458Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9249834Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9256027Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9263067Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9269425Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9275627Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9281766Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9288085Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9294212Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9300386Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9306503Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9312634Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9318751Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9325079Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9331168Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9337349Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9343467Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9349597Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9355770Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9361901Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9367739Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9374339Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9380471Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9386705Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9392822Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9398967Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9405261Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9411382Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9417515Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9424792Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9430966Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9437118Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9443246Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9449509Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9455680Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9461798Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9467942Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9474104Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9480218Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9486525Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9492652Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9498775Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9504877Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9511023Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9517200Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9523266Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9529592Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9536375Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9542482Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9548653Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9555691Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9562139Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9568283Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9575622Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9581631Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9587278Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9594202Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9600310Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9606561Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9612647Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9619096Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9625141Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9630895Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9637323Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9643426Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9649639Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9655778Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9661950Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9668044Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9674110Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9680150Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9686413Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9692563Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9698637Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9704722Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9710781Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9716862Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9722922Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9729213Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9736664Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9742392Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9752977Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9759150Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9765400Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9771481Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9777545Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9783627Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9789716Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9795778Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9801881Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9808078Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9814143Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9822860Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9828994Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9835051Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9841094Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9847339Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9853420Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9859580Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9865590Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9873174Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9877229Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9884034Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9890390Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9896530Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9902956Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9909068Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9915153Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9921236Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9928323Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9934661Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9940740Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9946796Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9953869Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9960695Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9966496Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9973470Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9979256Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9985668Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9991733Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:48.9997796Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0004032Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0010490Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0017096Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0023162Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0029239Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0035304Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0041384Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0048575Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0055039Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0061157Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0067234Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0073325Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0079490Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0085588Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0092252Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0098335Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0104778Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0110931Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0117022Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0123099Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0129328Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0135462Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0141562Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0147638Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0153714Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0159825Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0166015Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0172419Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0178245Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0184382Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0190410Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0196502Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0203286Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0210067Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0216226Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0222321Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0228385Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0234479Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0240588Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0246799Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0252892Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0259023Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0264788Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0271224Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0277072Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0283373Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0289950Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0295667Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0301793Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0307816Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0313918Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0320007Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0326214Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0332272Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0338021Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0344451Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0350556Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0356996Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0363288Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0369533Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0375616Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0381750Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0387800Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0393899Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0400004Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0406228Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0412283Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0418392Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0424473Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0430561Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0436628Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0442687Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0448934Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0455052Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0461127Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0467197Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0473278Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0479431Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0485533Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0491747Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0497821Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0503917Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0515848Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0545952Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0546518Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0547010Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0547522Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0553870Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0559948Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0566287Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0572351Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0578422Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0584544Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0590639Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0596694Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0602799Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0609085Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0615173Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0621249Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0627357Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0633428Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0639505Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0645600Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0651815Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0657940Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0664509Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0671495Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0677771Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0684044Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0690582Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0696290Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0702685Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0708759Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0716917Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0723073Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0729349Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0735447Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0742332Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0748029Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0754150Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0760328Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0766584Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0772662Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0778736Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0790153Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0790708Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0796911Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0802964Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0809263Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0815433Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0821534Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0827898Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0835470Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0841608Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0847396Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0853978Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0860119Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0866284Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0872357Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0878447Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0884920Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0890884Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0896940Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0903010Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0909118Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0915227Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0921311Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0927066Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0933637Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0939437Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0945852Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0951969Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0958005Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0964467Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0970424Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0976489Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0982824Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0989197Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.0995286Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1001368Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1007174Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1013759Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1019835Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1025925Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1032098Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1041325Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1044287Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1050568Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1056641Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1062732Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1069677Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1076313Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1082409Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1088608Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1094889Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1101027Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1107141Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1113283Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1119417Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1125792Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1131886Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1139317Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1165293Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1171473Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1177624Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1184054Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1190207Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1195932Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1202374Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1208090Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1214661Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1220807Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1229682Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1235442Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1241958Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1247952Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1254379Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1260864Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1266774Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1272641Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1278728Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1285046Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1291091Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1297573Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1304029Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1310146Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1316222Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1322350Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1328609Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1334692Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1341700Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1346611Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1353071Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1359146Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1365415Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1371429Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1377526Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1387573Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1390428Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1399555Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1406496Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1409609Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1416164Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1422248Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1428375Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1434448Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1440533Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1446278Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1452831Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1459376Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1465463Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1471547Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1477604Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1484093Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1490055Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1496183Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1502299Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1508356Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1514476Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1520582Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1526491Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1532504Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1539029Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1545138Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1551226Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1557320Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1563394Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1569729Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1575821Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1581991Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1588138Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1594225Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1600281Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1609644Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1614083Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1620546Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1626781Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1632940Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1638974Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1645559Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1651323Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1657447Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1663564Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1669641Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1675732Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1681860Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1687701Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1694204Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1700299Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1706423Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1712126Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1718590Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1724968Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1733089Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1737397Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1745395Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1751463Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1757225Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1764516Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1770630Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1776830Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1783173Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1789252Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1795332Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1801412Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1807216Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1813827Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1819884Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1826415Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1832080Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1838164Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1844653Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1850586Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1856659Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1862766Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1868864Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1878536Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1880519Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1886809Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1893459Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1899492Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1905566Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1911645Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1922243Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1930467Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1937402Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1944395Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1950140Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1956506Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1963481Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1970973Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1976402Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1981915Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1988173Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.1993892Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2000333Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2006168Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2012682Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2018805Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2024921Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2030998Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2037102Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2043193Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2049563Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2055633Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2061733Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2067835Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2073983Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2080904Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2087255Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2093372Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2099486Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2105580Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2111664Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2117426Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2124147Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2129786Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2136195Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2142302Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2148494Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2154602Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2160713Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2166952Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2173019Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2179209Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2185341Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2191450Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2197541Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2203658Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2209895Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2215938Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2222055Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2227761Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2234918Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2241414Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2247665Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2254413Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2259357Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2266329Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2272490Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2278615Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2285017Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2290971Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2297052Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2303145Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2309256Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2315358Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2321448Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2327706Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2333850Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2339886Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2345993Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2352050Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2358170Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2364470Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2370471Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2376569Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2382666Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2388892Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2395259Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2401314Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2407075Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2413694Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2419752Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2425872Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2431964Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2438048Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2444325Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2450338Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2456397Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2462517Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2468613Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2474783Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2480843Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2487065Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2493467Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2499564Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2505667Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2511735Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2517821Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2524099Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2530087Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2536187Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2542283Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2548893Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2555011Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2561062Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2567286Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2573952Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2579400Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2585945Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2592033Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2598140Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2604419Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2612922Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2619053Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2625188Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2631261Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2637334Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2643455Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2649708Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2655745Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2661834Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2667990Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2674116Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2680208Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2686527Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2692639Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2698743Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2705204Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2711586Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2717666Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2723350Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2729942Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2736073Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2742121Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2748241Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2754316Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2760408Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2766832Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2773166Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2779295Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2785430Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2791486Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2797561Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2803670Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2809915Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2816002Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2822072Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2828170Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2834230Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2840329Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2846610Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2852651Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2861668Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2868781Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2874936Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2881041Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2887272Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2892094Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2898337Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2904667Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2910703Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2916732Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2959429Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2965456Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2971701Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2977870Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2983954Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2990077Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.2996983Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3003653Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3009753Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3015996Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3022508Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3028570Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3034623Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3040706Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3046498Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3053050Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3059130Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3065183Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3071260Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3077350Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3083441Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3089678Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3095811Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3101858Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3107952Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3114025Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3120078Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3126622Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3132437Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3138501Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3144569Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3150609Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3156356Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3163903Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3170540Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3176879Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3182794Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3190088Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3195652Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3202203Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3207973Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3214519Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3220602Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3226707Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3232768Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3238837Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3245122Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3251133Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3257195Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3263383Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3269420Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3275457Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3281535Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3287918Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3293888Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3299594Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3306083Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3312782Z ##[debug]Skipping adding tests for test run 1053532 as already added 2020-06-25T11:55:49.3313183Z Removing duplicate Commits from master list 2020-06-25T11:55:49.3321175Z Removing duplicate WorkItems from master list 2020-06-25T11:55:49.3335388Z Expanding the truncated commit messages... 2020-06-25T11:55:49.3335953Z ##[debug]Expanding commit [cd65fbfbe6183d0235753c74a908705ecb0a3aa1] 2020-06-25T11:55:49.3336424Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:49.4838826Z ##[debug]Expanding commit [80b322662870839d13220cbd4cfe0f12698ce9b0] 2020-06-25T11:55:49.4839420Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:49.8308899Z ##[debug]Expanding commit [e80b07d6bf31f36ef063cf81490a6d430de224a4] 2020-06-25T11:55:49.8309448Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.0173149Z ##[debug]Expanding commit [96319fe18dcefd138faf6f45d2289a7d4a79d509] 2020-06-25T11:55:50.0173739Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.0746526Z ##[debug]Expanding commit [48288cde91b7d3dbf0398b921d25760caf0f061c] 2020-06-25T11:55:50.0747239Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.1301065Z ##[debug]Expanding commit [4f1668240af52661e22e7e6490e9b9ec99de3446] 2020-06-25T11:55:50.1301708Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.1903340Z ##[debug]Expanding commit [02bf112094bf2f2e731f2558ea80a94d8ec310f0] 2020-06-25T11:55:50.1903944Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.2458347Z ##[debug]Expanding commit [852e02ba5bdab5f9ae4b450fd0ed9e9a7c7d9bef] 2020-06-25T11:55:50.2459337Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.3020662Z ##[debug]Expanding commit [c5ac8c899ae9e184ba3542b4a682544472ca7231] 2020-06-25T11:55:50.3021732Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.3551981Z ##[debug]Expanding commit [2ab6d02314196588b58be5b716a930131e8ddc1d] 2020-06-25T11:55:50.3553117Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.4182642Z ##[debug]Expanding commit [915b71fa44ce7d3b8f803e2fd75a99dc1b77c020] 2020-06-25T11:55:50.4183792Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.5277360Z ##[debug]Expanding commit [cf8d17c48a94919fc3bf69a72d8aedf980a0a651] 2020-06-25T11:55:50.5277893Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.5875449Z ##[debug]Expanding commit [1a4d60966a21a4579aaa9dbdd696f835da9d0670] 2020-06-25T11:55:50.5876618Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.6436877Z ##[debug]Expanding commit [64ae7e335651978753ce08898b6ba764da099d8c] 2020-06-25T11:55:50.6437990Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.6938533Z ##[debug]Expanding commit [418ab389b6868aa8ae52fac3e0d52cb45bf680c4] 2020-06-25T11:55:50.6939186Z ##[debug]Need to expand details from Azure DevOps 2020-06-25T11:55:50.7504045Z Expanded 15 2020-06-25T11:55:50.7509101Z Get details of [40] WIs 2020-06-25T11:55:50.7509800Z Getting full details of WI batch from index: [0] to [40] 2020-06-25T11:55:51.1412034Z Adding [40] items 2020-06-25T11:55:51.1412844Z Total build artifacts: [0] 2020-06-25T11:55:51.1413398Z Total commits: [50] 2020-06-25T11:55:51.1413719Z Total workitems: [40] 2020-06-25T11:55:51.1413996Z Total related workitems: [0] 2020-06-25T11:55:51.1415494Z Total release tests: [0] 2020-06-25T11:55:51.1415919Z Total tests: [934] 2020-06-25T11:55:51.1416319Z Leaving WI in default order as returned by API 2020-06-25T11:55:51.1417069Z ##[debug]Getting the details of build 29152 from default project 2020-06-25T11:55:51.1933124Z The default artifact for the release was not linked to an Azure DevOps Git Repo Pull Request 2020-06-25T11:55:51.1934148Z Getting all completed Azure DevOps Git Repo PRs in the Team Project SspEngineering 2020-06-25T11:55:51.5847363Z Found 101 Azure DevOps for PRs 2020-06-25T11:55:51.5848425Z Checking for PRs associated with the commit cd65fbfbe6183d0235753c74a908705ecb0a3aa1 2020-06-25T11:55:51.5850337Z - PR 4642 matches the commit cd65fbfbe6183d0235753c74a908705ecb0a3aa1 2020-06-25T11:55:51.5850998Z Checking for PRs associated with the commit 27df25a363ab24fea4ba892477b1a14c02f858a2 2020-06-25T11:55:51.5851564Z Checking for PRs associated with the commit 4a365333472b6cc3a8f809e280b22fe22fc55b7a 2020-06-25T11:55:51.5868959Z Checking for PRs associated with the commit be0fb00bbcc315c5f5b03a978bfcbd2f138ebd7a 2020-06-25T11:55:51.5869745Z Checking for PRs associated with the commit 1710049c86f404400b6299c161b8054bf914f66f 2020-06-25T11:55:51.5870348Z Checking for PRs associated with the commit 6e3ee4d8964f11f29becabdf457f05c4b0868a92 2020-06-25T11:55:51.5870911Z Checking for PRs associated with the commit 5877e05b4006490a9d2afd5f02643073b429a6b7 2020-06-25T11:55:51.5871442Z Checking for PRs associated with the commit 80b322662870839d13220cbd4cfe0f12698ce9b0 2020-06-25T11:55:51.5872412Z - PR 4595 matches the commit 80b322662870839d13220cbd4cfe0f12698ce9b0 2020-06-25T11:55:51.5873036Z Checking for PRs associated with the commit e80b07d6bf31f36ef063cf81490a6d430de224a4 2020-06-25T11:55:51.5873860Z - PR 4611 matches the commit e80b07d6bf31f36ef063cf81490a6d430de224a4 2020-06-25T11:55:51.5874423Z Checking for PRs associated with the commit 0776c41982e3ae2fc784ab2c6ea6f98a43e639c4 2020-06-25T11:55:51.5874978Z Checking for PRs associated with the commit 96319fe18dcefd138faf6f45d2289a7d4a79d509 2020-06-25T11:55:51.5886037Z - PR 4609 matches the commit 96319fe18dcefd138faf6f45d2289a7d4a79d509 2020-06-25T11:55:51.5886758Z Checking for PRs associated with the commit 4100aac782fc9e7ac48de3a624610de526965f26 2020-06-25T11:55:51.5887346Z Checking for PRs associated with the commit 48288cde91b7d3dbf0398b921d25760caf0f061c 2020-06-25T11:55:51.5888186Z - PR 4604 matches the commit 48288cde91b7d3dbf0398b921d25760caf0f061c 2020-06-25T11:55:51.5888754Z Checking for PRs associated with the commit 4f1668240af52661e22e7e6490e9b9ec99de3446 2020-06-25T11:55:51.5889572Z - PR 4603 matches the commit 4f1668240af52661e22e7e6490e9b9ec99de3446 2020-06-25T11:55:51.5890145Z Checking for PRs associated with the commit 9a0ed7fa48759eafcb777c85bfaf761f3a6e824d 2020-06-25T11:55:51.5890706Z Checking for PRs associated with the commit 0647c0a54978effc0eef105a80270a56b3c9dc35 2020-06-25T11:55:51.5891256Z Checking for PRs associated with the commit 02bf112094bf2f2e731f2558ea80a94d8ec310f0 2020-06-25T11:55:51.5892042Z - PR 4602 matches the commit 02bf112094bf2f2e731f2558ea80a94d8ec310f0 2020-06-25T11:55:51.5892617Z Checking for PRs associated with the commit 852e02ba5bdab5f9ae4b450fd0ed9e9a7c7d9bef 2020-06-25T11:55:51.5893464Z - PR 4596 matches the commit 852e02ba5bdab5f9ae4b450fd0ed9e9a7c7d9bef 2020-06-25T11:55:51.5894112Z Checking for PRs associated with the commit aa94d669b70c427f0b0c428e3a705fa5c172c998 2020-06-25T11:55:51.5894673Z Checking for PRs associated with the commit c5ac8c899ae9e184ba3542b4a682544472ca7231 2020-06-25T11:55:51.5895543Z - PR 4564 matches the commit c5ac8c899ae9e184ba3542b4a682544472ca7231 2020-06-25T11:55:51.5896493Z Checking for PRs associated with the commit 1409c97c673d873ea439032b5cf4483f4fbe4e95 2020-06-25T11:55:51.5897187Z Checking for PRs associated with the commit c6ef42713e78aacd1e392fb293f4405ff2f90e77 2020-06-25T11:55:51.5897753Z Checking for PRs associated with the commit 886fe0aae214995d723f0f4cab74867145edbcf7 2020-06-25T11:55:51.5898313Z Checking for PRs associated with the commit 7d3538323a80260ce4c0fad35bd840db6808278f 2020-06-25T11:55:51.5898846Z Checking for PRs associated with the commit 2ab6d02314196588b58be5b716a930131e8ddc1d 2020-06-25T11:55:51.5899673Z - PR 4594 matches the commit 2ab6d02314196588b58be5b716a930131e8ddc1d 2020-06-25T11:55:51.5900247Z Checking for PRs associated with the commit 700384c569bdccce2aad7933398460aa4fb414b3 2020-06-25T11:55:51.5900775Z Checking for PRs associated with the commit 5ac3ebb9b575ee8859de42a15465d7bd240d18a4 2020-06-25T11:55:51.5901328Z Checking for PRs associated with the commit ab631aff30b33b6e17fe3c064c90207781ab7109 2020-06-25T11:55:51.5901901Z Checking for PRs associated with the commit 915b71fa44ce7d3b8f803e2fd75a99dc1b77c020 2020-06-25T11:55:51.5902686Z - PR 4556 matches the commit 915b71fa44ce7d3b8f803e2fd75a99dc1b77c020 2020-06-25T11:55:51.5903284Z Checking for PRs associated with the commit 3e6131ae375b65917eb630152bb7a3eb0965e923 2020-06-25T11:55:51.5903823Z Checking for PRs associated with the commit cf8d17c48a94919fc3bf69a72d8aedf980a0a651 2020-06-25T11:55:51.5904601Z - PR 4542 matches the commit cf8d17c48a94919fc3bf69a72d8aedf980a0a651 2020-06-25T11:55:51.5905192Z Checking for PRs associated with the commit afd4da052b348989945be0a38cd58d026fe63466 2020-06-25T11:55:51.5905734Z Checking for PRs associated with the commit cfa6fe6daf7b01d775b6aede261501a09933af8a 2020-06-25T11:55:51.5906280Z Checking for PRs associated with the commit 63f86af0f7891562aef58b7650e41fa88ab5ba09 2020-06-25T11:55:51.5906828Z Checking for PRs associated with the commit 567be1c00822ada1321c3053caf469099da8728f 2020-06-25T11:55:51.5907371Z Checking for PRs associated with the commit f7a2bb8f0f41f676bf590cc44096d696f75ad7c6 2020-06-25T11:55:51.5907926Z Checking for PRs associated with the commit c9f85ede179872015b36fd093411cf50226cdb1c 2020-06-25T11:55:51.5908525Z Checking for PRs associated with the commit 1a4d60966a21a4579aaa9dbdd696f835da9d0670 2020-06-25T11:55:51.5910512Z Checking for PRs associated with the commit ec93b6ae6fa3b6d845ae5650779e75412575842f 2020-06-25T11:55:51.5910960Z Checking for PRs associated with the commit b38682121e4a2c2e641a19851865cc612dbdc9eb 2020-06-25T11:55:51.5911382Z Checking for PRs associated with the commit 64ae7e335651978753ce08898b6ba764da099d8c 2020-06-25T11:55:51.5911841Z Checking for PRs associated with the commit f53a37660a9862416af8594b76944e861b75f73f 2020-06-25T11:55:51.5912269Z Checking for PRs associated with the commit 38b9786c6e73efb6c09bcabf28ef88abce1d90be 2020-06-25T11:55:51.5912690Z Checking for PRs associated with the commit f72c073214fadc8b0949f28f77c9a6fcfdf379c8 2020-06-25T11:55:51.5913112Z Checking for PRs associated with the commit 3e6b91723b1559c360b6ce3d0807da4febed1405 2020-06-25T11:55:51.5913541Z Checking for PRs associated with the commit 418ab389b6868aa8ae52fac3e0d52cb45bf680c4 2020-06-25T11:55:51.5913948Z Checking for PRs associated with the commit dd81ef582792eed7990d7de695c959000b51dc06 2020-06-25T11:55:51.5914370Z Checking for PRs associated with the commit 1a98e383720aaec2ae2ac5547b5dee78e2bf1e28 2020-06-25T11:55:51.5914795Z Checking for PRs associated with the commit 831eb664cd5f5a4d82761f59f601a42b77d25a4f 2020-06-25T11:55:51.5915203Z Checking for PRs associated with the commit aed1268a5a2f8ecac0216d5b0c2f8b4c4ecf2f2d 2020-06-25T11:55:51.5915537Z Total Pull Requests: [12] 2020-06-25T11:55:51.6075552Z ##[debug]Using template mode InLine 2020-06-25T11:55:51.6076547Z Using in-line template 2020-06-25T11:55:51.6076931Z ##[debug]Loading legacy template 2020-06-25T11:55:51.6087980Z ##[debug]Processing template 2020-06-25T11:55:51.6088700Z ##[debug] WI: 40 2020-06-25T11:55:51.6089031Z ##[debug] CS: 50 2020-06-25T11:55:51.6089340Z ##[debug] PR: 12 2020-06-25T11:55:51.6090940Z ##[debug] Builds: 0 2020-06-25T11:55:51.6091459Z ##[debug] Global Tests: 934 2020-06-25T11:55:51.6091835Z ##[debug] Release Tests: 0 2020-06-25T11:55:51.6092197Z ##[debug] Related WI: 0 2020-06-25T11:55:51.6092564Z ##[debug]Processing legacy template 2020-06-25T11:55:51.6092994Z ##[debug] Added 0 items to queue for BODY 2020-06-25T11:55:51.6093401Z ##[debug] Processing Line No: 1 2020-06-25T11:55:51.6094224Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6096429Z ##[debug] Processing Line No: 2 2020-06-25T11:55:51.6097076Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6098838Z ##[debug] Processing Line No: 3 2020-06-25T11:55:51.6099531Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6099923Z ##[debug] Processing Line No: 4 2020-06-25T11:55:51.6100347Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6100785Z ##[debug] Processing Line No: 5 2020-06-25T11:55:51.6101161Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6105015Z ##[debug] Processing Line No: 6 2020-06-25T11:55:51.6105466Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6106024Z ##[debug] Processing Line No: 7 2020-06-25T11:55:51.6106430Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6106808Z ##[debug] Processing Line No: 8 2020-06-25T11:55:51.6107230Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6107647Z ##[debug] Processing Line No: 9 2020-06-25T11:55:51.6108038Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6108429Z ##[debug] Processing Line No: 10 2020-06-25T11:55:51.6108854Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6109278Z ##[debug] Processing Line No: 11 2020-06-25T11:55:51.6109670Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6110072Z ##[debug] Processing Line No: 12 2020-06-25T11:55:51.6110495Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6110917Z ##[debug] Processing Line No: 13 2020-06-25T11:55:51.6111313Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6111736Z ##[debug] Processing Line No: 14 2020-06-25T11:55:51.6114745Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6115301Z ##[debug] Processing Line No: 15 2020-06-25T11:55:51.6118315Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6118748Z ##[debug] Processing Line No: 16 2020-06-25T11:55:51.6119134Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6119523Z ##[debug] Processing Line No: 17 2020-06-25T11:55:51.6120476Z ##[debug] Starting block @@WILOOP:RN-OVERVIEW@@ 2020-06-25T11:55:51.6121262Z ##[debug] Checking WI 47950 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6121800Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6122241Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6122962Z ##[debug] Checking WI 48040 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6123497Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6124144Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6124922Z ##[debug] Checking WI 46879 with tags 'Pilot test cycle -1; Triage done' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6125501Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6125936Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6126632Z ##[debug] Checking WI 47844 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6127155Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6127801Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6128549Z ##[debug] Checking WI 43636 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6129218Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6129657Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6130388Z ##[debug] Checking WI 45711 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6130923Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6131357Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6132059Z ##[debug] Checking WI 47808 with tags 'Pilot test cycle -1' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6132611Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6133056Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6133747Z ##[debug] Checking WI 47906 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6134284Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6134718Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6145252Z ##[debug] Checking WI 41900 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6145839Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6146284Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6147023Z ##[debug] Checking WI 42004 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6147547Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6147979Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6148707Z ##[debug] Checking WI 46176 with tags 'Post Pilot' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6149249Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6212937Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6215127Z ##[debug] Checking WI 42162 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6216129Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6216910Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6218336Z ##[debug] Checking WI 10516 with tags 'Ollie PostPilot; Post Pilot' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6219259Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6220222Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6221496Z ##[debug] Checking WI 44949 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6222410Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6224775Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6225705Z ##[debug] Checking WI 46182 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6226252Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6226693Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6228281Z ##[debug] Checking WI 43310 with tags 'Pilot Test Cycle-2; Triage not required' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6229153Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6230111Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6231367Z ##[debug] Checking WI 45923 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6233019Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6234918Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6236373Z ##[debug] Checking WI 45934 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6237368Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6238975Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6239758Z ##[debug] Checking WI 45881 with tags 'Post Pilot' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6240295Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6248664Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6282099Z ##[debug] Checking WI 39626 with tags 'Ollie PostPilot; Post Pilot' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6285618Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6286090Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6287077Z ##[debug] Checking WI 43630 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6287603Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6288044Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6288772Z ##[debug] Checking WI 43628 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6289603Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6290049Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6290850Z ##[debug] Checking WI 44186 with tags 'Ollie PostPilot' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6291416Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6291855Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6292577Z ##[debug] Checking WI 44944 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6302934Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6303416Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6304323Z ##[debug] Checking WI 39606 with tags 'Ollie PostPilot; Post Pilot' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6304877Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6305317Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6306044Z ##[debug] Checking WI 44528 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6306607Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6307047Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6307794Z ##[debug] Checking WI 40445 with tags 'Ollie PostPilot; Post Pilot' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6308360Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6308798Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6309494Z ##[debug] Checking WI 43168 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6310025Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6310464Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6311170Z ##[debug] Checking WI 43172 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6312282Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6312994Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6314571Z ##[debug] Checking WI 43464 with tags 'Pilot test cycle -1' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6315278Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6315723Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6316496Z ##[debug] Checking WI 44157 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6317038Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6323595Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6325687Z ##[debug] Checking WI 43170 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6326260Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6326719Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6328619Z ##[debug] Checking WI 43171 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6335005Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6340785Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6343469Z ##[debug] Checking WI 43607 with tags 'Dev2' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6344058Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6344501Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6345350Z ##[debug] Checking WI 42383 with tags 'Pilot test cycle -1; retesting fail' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6345937Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6346376Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6347112Z ##[debug] Checking WI 42654 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6347666Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6348106Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6348810Z ##[debug] Checking WI 43239 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6349348Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6349786Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6350653Z ##[debug] Checking WI 42382 with tags 'Retesting pass' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6353419Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6357882Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6358888Z ##[debug] Checking WI 42704 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6359447Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6360805Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6363293Z ##[debug] Checking WI 42491 with tags 'undefined' against tags 'RN-OVERVIEW' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6365062Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6365613Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6367072Z ##[debug] There are 0 WI to add 2020-06-25T11:55:51.6367759Z ##[debug] Added 0 items to queue for @@WILOOP:RN-OVERVIEW@@ 2020-06-25T11:55:51.6368230Z ##[debug] Processing Line No: 18 2020-06-25T11:55:51.6371231Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6371646Z ##[debug] Processing Line No: 19 2020-06-25T11:55:51.6372333Z ##[debug] No WI or CS so outputing emptySetText 2020-06-25T11:55:51.6372773Z ##[debug] Processing Line No: 20 2020-06-25T11:55:51.6385014Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6386519Z ##[debug] Processing Line No: 21 2020-06-25T11:55:51.6388116Z ##[debug] Ending block @@WILOOP:RN-OVERVIEW@@ 2020-06-25T11:55:51.6388598Z ##[debug] Processing Line No: 22 2020-06-25T11:55:51.6394360Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6394752Z ##[debug] Processing Line No: 23 2020-06-25T11:55:51.6395137Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6395531Z ##[debug] Processing Line No: 24 2020-06-25T11:55:51.6395958Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6396382Z ##[debug] Processing Line No: 25 2020-06-25T11:55:51.6396772Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6397149Z ##[debug] Processing Line No: 26 2020-06-25T11:55:51.6397816Z ##[debug] Starting block @@WILOOP:RN-FEATURES@@ 2020-06-25T11:55:51.6398518Z ##[debug] Checking WI 47950 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6399067Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6399504Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6400215Z ##[debug] Checking WI 48040 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6401805Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6402251Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6403065Z ##[debug] Checking WI 46879 with tags 'Pilot test cycle -1; Triage done' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6403659Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6404255Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6406451Z ##[debug] Checking WI 47844 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6408230Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6408665Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6409441Z ##[debug] Checking WI 43636 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6409980Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6410416Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6411120Z ##[debug] Checking WI 45711 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6411656Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6412095Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6412826Z ##[debug] Checking WI 47808 with tags 'Pilot test cycle -1' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6413391Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6413826Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6414520Z ##[debug] Checking WI 47906 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6415054Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6415489Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6416180Z ##[debug] Checking WI 41900 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6416707Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6417142Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6417840Z ##[debug] Checking WI 42004 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6418568Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6419102Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6419850Z ##[debug] Checking WI 46176 with tags 'Post Pilot' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6420387Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6420819Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6421517Z ##[debug] Checking WI 42162 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6422052Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6422488Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6423210Z ##[debug] Checking WI 10516 with tags 'Ollie PostPilot; Post Pilot' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6423787Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6424221Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6424918Z ##[debug] Checking WI 44949 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6425450Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6425884Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6426572Z ##[debug] Checking WI 46182 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6427099Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6427532Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6428282Z ##[debug] Checking WI 43310 with tags 'Pilot Test Cycle-2; Triage not required' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6428877Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6429311Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6430022Z ##[debug] Checking WI 45923 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6430560Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6430999Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6431690Z ##[debug] Checking WI 45934 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6432228Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6432664Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6433354Z ##[debug] Checking WI 45881 with tags 'Post Pilot' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6433900Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6434333Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6435062Z ##[debug] Checking WI 39626 with tags 'Ollie PostPilot; Post Pilot' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6435623Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6436061Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6436753Z ##[debug] Checking WI 43630 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6437279Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6437713Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6438411Z ##[debug] Checking WI 43628 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6438950Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6439533Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6440276Z ##[debug] Checking WI 44186 with tags 'Ollie PostPilot' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6440921Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6441362Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6442085Z ##[debug] Checking WI 44944 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6442623Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6443060Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6444112Z ##[debug] Checking WI 39606 with tags 'Ollie PostPilot; Post Pilot' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6444713Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6445161Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6445904Z ##[debug] Checking WI 44528 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6446442Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6446880Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6447617Z ##[debug] Checking WI 40445 with tags 'Ollie PostPilot; Post Pilot' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6448179Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6450805Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6454147Z ##[debug] Checking WI 43168 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6454713Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6455154Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6455943Z ##[debug] Checking WI 43172 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6456496Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6456930Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6457660Z ##[debug] Checking WI 43464 with tags 'Pilot test cycle -1' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6458212Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6458648Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6459343Z ##[debug] Checking WI 44157 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6459881Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6460315Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6461025Z ##[debug] Checking WI 43170 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6461570Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6462006Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6462693Z ##[debug] Checking WI 43171 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6463214Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6463643Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6471000Z ##[debug] Checking WI 43607 with tags 'Dev2' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6471636Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6472084Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6472978Z ##[debug] Checking WI 42383 with tags 'Pilot test cycle -1; retesting fail' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6473818Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6474315Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6475106Z ##[debug] Checking WI 42654 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6475648Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6476085Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6476791Z ##[debug] Checking WI 43239 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6477327Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6477765Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6478471Z ##[debug] Checking WI 42382 with tags 'Retesting pass' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6479027Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6479475Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6480176Z ##[debug] Checking WI 42704 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6480710Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6481160Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6481870Z ##[debug] Checking WI 42491 with tags 'undefined' against tags 'RN-FEATURES' and fields '' using comparison filter 'ALL' 2020-06-25T11:55:51.6482409Z ##[debug] Using ALL filter 2020-06-25T11:55:51.6482846Z ##[debug] Tags do not match, no need to check fields 2020-06-25T11:55:51.6483266Z ##[debug] There are 0 WI to add 2020-06-25T11:55:51.6484022Z ##[debug] Added 0 items to queue for @@WILOOP:RN-FEATURES@@ 2020-06-25T11:55:51.6484534Z ##[debug] Processing Line No: 27 2020-06-25T11:55:51.6484941Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6485353Z ##[debug] Processing Line No: 28 2020-06-25T11:55:51.6485786Z ##[debug] No WI or CS so outputing emptySetText 2020-06-25T11:55:51.6486221Z ##[debug] Processing Line No: 29 2020-06-25T11:55:51.6486623Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6487027Z ##[debug] Processing Line No: 30 2020-06-25T11:55:51.6487609Z ##[debug] Ending block @@WILOOP:RN-FEATURES@@ 2020-06-25T11:55:51.6488052Z ##[debug] Processing Line No: 31 2020-06-25T11:55:51.6488443Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6488836Z ##[debug] Processing Line No: 32 2020-06-25T11:55:51.6489230Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6489625Z ##[debug] Processing Line No: 33 2020-06-25T11:55:51.6490054Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6490490Z ##[debug] Processing Line No: 34 2020-06-25T11:55:51.6490880Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6491278Z ##[debug] Processing Line No: 35 2020-06-25T11:55:51.6491676Z ##[debug] Starting block @@WILOOP@@ 2020-06-25T11:55:51.6492107Z ##[debug] Adding all WI as no tag or fields filter 2020-06-25T11:55:51.6492531Z ##[debug] There are 40 WI to add 2020-06-25T11:55:51.6492939Z ##[debug] Added 40 items to queue for @@WILOOP@@ 2020-06-25T11:55:51.6493365Z ##[debug] Getting first workitem 47950 2020-06-25T11:55:51.6493782Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6494185Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6494592Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6495029Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6495466Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6495901Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6496508Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6496945Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6497478Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6497884Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6498286Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6498699Z ##[debug] Getting next workitem 48040 2020-06-25T11:55:51.6499098Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6499503Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6499908Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6500343Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6500774Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6501214Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6501643Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6502085Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6502516Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6502926Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6503330Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6503749Z ##[debug] Getting next workitem 46879 2020-06-25T11:55:51.6504161Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6504567Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6504971Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6505406Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6505841Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6506277Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6506707Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6507139Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6507570Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6507977Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6508382Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6508801Z ##[debug] Getting next workitem 47844 2020-06-25T11:55:51.6509216Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6509623Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6510025Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6510459Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6510893Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6511311Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6511744Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6512176Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6512608Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6513012Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6513422Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6513837Z ##[debug] Getting next workitem 43636 2020-06-25T11:55:51.6514249Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6514657Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6515063Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6515500Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6515932Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6516367Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6516797Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6517232Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6517662Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6518069Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6518466Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6518873Z ##[debug] Getting next workitem 45711 2020-06-25T11:55:51.6519401Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6519807Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6520298Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6520736Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6521172Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6521606Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6522039Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6522472Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6522902Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6523304Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6523691Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6524476Z ##[debug] Getting next workitem 47808 2020-06-25T11:55:51.6524889Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6525293Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6525708Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6526144Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6526580Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6527017Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6527447Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6527882Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6528310Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6528710Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6529115Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6529529Z ##[debug] Getting next workitem 47906 2020-06-25T11:55:51.6529941Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6530345Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6530749Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6531183Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6531624Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6532059Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6532497Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6532935Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6533366Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6533769Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6534172Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6534587Z ##[debug] Getting next workitem 41900 2020-06-25T11:55:51.6534998Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6535402Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6535789Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6536224Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6536656Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6537095Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6537525Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6537970Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6538401Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6538804Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6539206Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6539620Z ##[debug] Getting next workitem 42004 2020-06-25T11:55:51.6540033Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6540436Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6540840Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6541272Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6541705Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6542139Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6542569Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6543161Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6543595Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6544084Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6544491Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6544904Z ##[debug] Getting next workitem 46176 2020-06-25T11:55:51.6545316Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6545721Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6546130Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6546567Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6547002Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6547436Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6547870Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6548302Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6548724Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6549125Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6549530Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6549952Z ##[debug] Getting next workitem 42162 2020-06-25T11:55:51.6550366Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6550768Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6551176Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6551611Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6552043Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6552478Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6552911Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6553345Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6553775Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6554178Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6554587Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6555000Z ##[debug] Getting next workitem 10516 2020-06-25T11:55:51.6555419Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6555823Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6556228Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6556663Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6557098Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6557533Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6557965Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6558397Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6558830Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6559233Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6559639Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6560053Z ##[debug] Getting next workitem 44949 2020-06-25T11:55:51.6560458Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6560866Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6561277Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6561712Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6562145Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6562579Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6563012Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6563446Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6564055Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6564461Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6564863Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6565276Z ##[debug] Getting next workitem 46182 2020-06-25T11:55:51.6565688Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6566095Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6566623Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6567062Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6567575Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6568016Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6568450Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6568886Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6569316Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6569719Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6570124Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6570537Z ##[debug] Getting next workitem 43310 2020-06-25T11:55:51.6570950Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6571354Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6571759Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6572202Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6572687Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6573116Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6573550Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6573988Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6574426Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6574829Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6575231Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6575646Z ##[debug] Getting next workitem 45923 2020-06-25T11:55:51.6576058Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6576462Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6576870Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6577306Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6577739Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6578177Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6578608Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6579047Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6579477Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6579879Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6580283Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6580697Z ##[debug] Getting next workitem 45934 2020-06-25T11:55:51.6581111Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6581515Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6581920Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6582356Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6582788Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6583226Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6583665Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6584099Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6584526Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6584932Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6585321Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6585735Z ##[debug] Getting next workitem 45881 2020-06-25T11:55:51.6586147Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6586548Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6586954Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6587389Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6587819Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6588256Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6588688Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6589123Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6589673Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6590076Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6590560Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6590975Z ##[debug] Getting next workitem 39626 2020-06-25T11:55:51.6591389Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6591794Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6592204Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6592639Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6593074Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6593508Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6593939Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6594372Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6594802Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6595204Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6595620Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6596034Z ##[debug] Getting next workitem 43630 2020-06-25T11:55:51.6596452Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6596854Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6597241Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6597676Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6598111Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6598545Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6598977Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6599414Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6599845Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6600249Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6600653Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6601071Z ##[debug] Getting next workitem 43628 2020-06-25T11:55:51.6601486Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6601890Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6602307Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6602743Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6603174Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6603612Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6604353Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6604796Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6605230Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6606337Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6606781Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6607192Z ##[debug] Getting next workitem 44186 2020-06-25T11:55:51.6607605Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6608023Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6608431Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6608865Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6609305Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6609739Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6610170Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6610600Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6611016Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6611419Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6611823Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6612237Z ##[debug] Getting next workitem 44944 2020-06-25T11:55:51.6612648Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6613052Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6613456Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6614108Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6614540Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6615092Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6615526Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6615958Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6616388Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6616790Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6617193Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6617603Z ##[debug] Getting next workitem 39606 2020-06-25T11:55:51.6618015Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6618421Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6618823Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6619257Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6619697Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6620130Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6620560Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6620996Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6621427Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6621827Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6622228Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6622641Z ##[debug] Getting next workitem 44528 2020-06-25T11:55:51.6623038Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6623882Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6624274Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6624708Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6625139Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6625573Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6626014Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6626445Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6626880Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6627282Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6627684Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6628096Z ##[debug] Getting next workitem 40445 2020-06-25T11:55:51.6628504Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6628909Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6629309Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6629738Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6630168Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6630600Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6631025Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6631461Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6631896Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6632295Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6632700Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6633111Z ##[debug] Getting next workitem 43168 2020-06-25T11:55:51.6633519Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6633924Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6634324Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6634756Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6635185Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6635614Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6636045Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6636462Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6636890Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6637403Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6637806Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6638220Z ##[debug] Getting next workitem 43172 2020-06-25T11:55:51.6638712Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6639118Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6639523Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6639956Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6640384Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6640820Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6641252Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6641683Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6642111Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6642509Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6642910Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6643328Z ##[debug] Getting next workitem 43464 2020-06-25T11:55:51.6644073Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6644514Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6644920Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6645355Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6645790Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6646223Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6646654Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6647086Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6647514Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6647913Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6648317Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6648726Z ##[debug] Getting next workitem 44157 2020-06-25T11:55:51.6649125Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6649536Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6649937Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6650377Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6650813Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6651245Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6651672Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6652107Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6652535Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6652935Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6653339Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6653753Z ##[debug] Getting next workitem 43170 2020-06-25T11:55:51.6654162Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6654563Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6654965Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6655405Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6655834Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6656272Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6656706Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6657139Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6657569Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6657968Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6658369Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6658782Z ##[debug] Getting next workitem 43171 2020-06-25T11:55:51.6659194Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6659599Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6660002Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6660433Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6660992Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6661413Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6661924Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6662363Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6662794Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6663197Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6663602Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6664014Z ##[debug] Getting next workitem 43607 2020-06-25T11:55:51.6664427Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6664829Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6665234Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6665667Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6666096Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6666528Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6666964Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6667401Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6667835Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6668239Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6668644Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6669057Z ##[debug] Getting next workitem 42383 2020-06-25T11:55:51.6669470Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6669872Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6670274Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6670707Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6671193Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6671628Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6672062Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6672504Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6672933Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6673332Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6673725Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6674135Z ##[debug] Getting next workitem 42654 2020-06-25T11:55:51.6674545Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6674944Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6675346Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6675782Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6676212Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6676647Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6677076Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6677509Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6677942Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6678349Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6678750Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6679168Z ##[debug] Getting next workitem 43239 2020-06-25T11:55:51.6679579Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6679987Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6680390Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6680823Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6681255Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6681686Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6682116Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6682548Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6682978Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6683379Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6683947Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6684516Z ##[debug] Getting next workitem 42382 2020-06-25T11:55:51.6684930Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6685419Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6685810Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6686244Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6686676Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6687111Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6687545Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6687980Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6688409Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6688919Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6689365Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6689814Z ##[debug] Getting next workitem 42704 2020-06-25T11:55:51.6690295Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6690738Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6691178Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6691655Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6692249Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6692733Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6693204Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6693686Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6694107Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6694545Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6695017Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6695465Z ##[debug] Getting next workitem 42491 2020-06-25T11:55:51.6695915Z ##[debug] Processing Line No: 36 2020-06-25T11:55:51.6696384Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6696837Z ##[debug] Processing Line No: 37 2020-06-25T11:55:51.6697321Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6697800Z ##[debug] Processing Line No: 38 2020-06-25T11:55:51.6698269Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6698735Z ##[debug] Processing Line No: 39 2020-06-25T11:55:51.6699206Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6699668Z ##[debug] Processing Line No: 40 2020-06-25T11:55:51.6700127Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6725268Z ##[debug] Processing Line No: 41 2020-06-25T11:55:51.6725767Z ##[debug] Ending block @@WILOOP@@ 2020-06-25T11:55:51.6726169Z ##[debug] Processing Line No: 42 2020-06-25T11:55:51.6726561Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6726952Z ##[debug] Processing Line No: 43 2020-06-25T11:55:51.6727343Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6727751Z ##[debug] Processing Line No: 44 2020-06-25T11:55:51.6728177Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6728599Z ##[debug] Processing Line No: 45 2020-06-25T11:55:51.6728999Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6729388Z ##[debug] Processing Line No: 46 2020-06-25T11:55:51.6729787Z ##[debug] Starting block @@CSLOOP@@ 2020-06-25T11:55:51.6730192Z ##[debug] No regex filter used to filter CS 2020-06-25T11:55:51.6730623Z ##[debug] Added 50 items to queue for @@CSLOOP@@ 2020-06-25T11:55:51.6731104Z ##[debug] Getting first commit cd65fbfbe6183d0235753c74a908705ecb0a3aa1 2020-06-25T11:55:51.6731571Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6731976Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6732378Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6732808Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6733230Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6733965Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6734369Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6734947Z ##[debug] Getting next commit 27df25a363ab24fea4ba892477b1a14c02f858a2 2020-06-25T11:55:51.6735422Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6735823Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6736227Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6736662Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6737095Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6737497Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6737898Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6738367Z ##[debug] Getting next commit 4a365333472b6cc3a8f809e280b22fe22fc55b7a 2020-06-25T11:55:51.6738836Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6739240Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6739650Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6740085Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6740522Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6740923Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6741324Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6741792Z ##[debug] Getting next commit be0fb00bbcc315c5f5b03a978bfcbd2f138ebd7a 2020-06-25T11:55:51.6742256Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6742658Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6743063Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6743496Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6743928Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6744329Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6744732Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6745199Z ##[debug] Getting next commit 1710049c86f404400b6299c161b8054bf914f66f 2020-06-25T11:55:51.6745669Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6746072Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6746477Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6746897Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6747331Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6747730Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6748133Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6748600Z ##[debug] Getting next commit 6e3ee4d8964f11f29becabdf457f05c4b0868a92 2020-06-25T11:55:51.6749065Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6749467Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6749868Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6750302Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6750735Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6751146Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6751549Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6752021Z ##[debug] Getting next commit 5877e05b4006490a9d2afd5f02643073b429a6b7 2020-06-25T11:55:51.6752487Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6752890Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6753293Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6753726Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6754158Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6754559Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6754965Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6755431Z ##[debug] Getting next commit 80b322662870839d13220cbd4cfe0f12698ce9b0 2020-06-25T11:55:51.6755896Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6756291Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6756801Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6757236Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6757749Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6758152Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6758554Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6759023Z ##[debug] Getting next commit e80b07d6bf31f36ef063cf81490a6d430de224a4 2020-06-25T11:55:51.6759488Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6759892Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6760280Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6760715Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6761148Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6761550Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6764658Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6765144Z ##[debug] Getting next commit 0776c41982e3ae2fc784ab2c6ea6f98a43e639c4 2020-06-25T11:55:51.6765625Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6766035Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6766441Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6766874Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6767308Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6768176Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6768590Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6769062Z ##[debug] Getting next commit 96319fe18dcefd138faf6f45d2289a7d4a79d509 2020-06-25T11:55:51.6769525Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6769929Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6770333Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6770769Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6771498Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6771927Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6772357Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6772831Z ##[debug] Getting next commit 4100aac782fc9e7ac48de3a624610de526965f26 2020-06-25T11:55:51.6773297Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6773701Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6774105Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6774543Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6774975Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6775376Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6775776Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6776245Z ##[debug] Getting next commit 48288cde91b7d3dbf0398b921d25760caf0f061c 2020-06-25T11:55:51.6776707Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6777095Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6777503Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6777936Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6778372Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6778775Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6779178Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6779647Z ##[debug] Getting next commit 4f1668240af52661e22e7e6490e9b9ec99de3446 2020-06-25T11:55:51.6780110Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6780511Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6780911Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6781348Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6781780Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6782181Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6782581Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6783253Z ##[debug] Getting next commit 9a0ed7fa48759eafcb777c85bfaf761f3a6e824d 2020-06-25T11:55:51.6783718Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6784219Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6784627Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6785060Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6785493Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6785894Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6786297Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6786766Z ##[debug] Getting next commit 0647c0a54978effc0eef105a80270a56b3c9dc35 2020-06-25T11:55:51.6787228Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6787629Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6788031Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6788464Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6788901Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6789301Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6789702Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6790172Z ##[debug] Getting next commit 02bf112094bf2f2e731f2558ea80a94d8ec310f0 2020-06-25T11:55:51.6790635Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6791025Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6791428Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6792139Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6792579Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6792982Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6793384Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6793854Z ##[debug] Getting next commit 852e02ba5bdab5f9ae4b450fd0ed9e9a7c7d9bef 2020-06-25T11:55:51.6794317Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6794719Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6795131Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6795565Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6796000Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6796400Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6796798Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6797266Z ##[debug] Getting next commit aa94d669b70c427f0b0c428e3a705fa5c172c998 2020-06-25T11:55:51.6797729Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6798131Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6798534Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6798967Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6799397Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6799797Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6800439Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6800926Z ##[debug] Getting next commit c5ac8c899ae9e184ba3542b4a682544472ca7231 2020-06-25T11:55:51.6801391Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6801797Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6802198Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6802631Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6803064Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6803463Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6804022Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6804485Z ##[debug] Getting next commit 1409c97c673d873ea439032b5cf4483f4fbe4e95 2020-06-25T11:55:51.6804946Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6805349Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6805750Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6806188Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6806763Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6807164Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6807565Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6808162Z ##[debug] Getting next commit c6ef42713e78aacd1e392fb293f4405ff2f90e77 2020-06-25T11:55:51.6808627Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6809027Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6809430Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6809863Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6810732Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6811471Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6811909Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6812378Z ##[debug] Getting next commit 886fe0aae214995d723f0f4cab74867145edbcf7 2020-06-25T11:55:51.6812839Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6813242Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6813656Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6814089Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6814525Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6814924Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6815324Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6815790Z ##[debug] Getting next commit 7d3538323a80260ce4c0fad35bd840db6808278f 2020-06-25T11:55:51.6816254Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6816655Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6817057Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6817818Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6818285Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6818686Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6819072Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6819549Z ##[debug] Getting next commit 2ab6d02314196588b58be5b716a930131e8ddc1d 2020-06-25T11:55:51.6820009Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6820417Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6820817Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6821251Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6821680Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6822083Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6822482Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6822950Z ##[debug] Getting next commit 700384c569bdccce2aad7933398460aa4fb414b3 2020-06-25T11:55:51.6823411Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6823812Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6824216Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6824649Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6825084Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6825482Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6825886Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6826357Z ##[debug] Getting next commit 5ac3ebb9b575ee8859de42a15465d7bd240d18a4 2020-06-25T11:55:51.6826817Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6827216Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6827619Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6828051Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6828481Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6828878Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6829277Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6829744Z ##[debug] Getting next commit ab631aff30b33b6e17fe3c064c90207781ab7109 2020-06-25T11:55:51.6830204Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6830605Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6831159Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6831597Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6832114Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6832502Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6832903Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6833368Z ##[debug] Getting next commit 915b71fa44ce7d3b8f803e2fd75a99dc1b77c020 2020-06-25T11:55:51.6833828Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6834227Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6834628Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6835063Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6835492Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6835892Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6836294Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6836767Z ##[debug] Getting next commit 3e6131ae375b65917eb630152bb7a3eb0965e923 2020-06-25T11:55:51.6837228Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6837635Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6838035Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6838715Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6839186Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6839589Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6839989Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6840457Z ##[debug] Getting next commit cf8d17c48a94919fc3bf69a72d8aedf980a0a651 2020-06-25T11:55:51.6840920Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6841321Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6841722Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6842155Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6842594Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6842996Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6843395Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6844135Z ##[debug] Getting next commit afd4da052b348989945be0a38cd58d026fe63466 2020-06-25T11:55:51.6844627Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6845029Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6845429Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6845863Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6846281Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6846681Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6847080Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6847546Z ##[debug] Getting next commit cfa6fe6daf7b01d775b6aede261501a09933af8a 2020-06-25T11:55:51.6848010Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6848420Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6848821Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6849255Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6849691Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6850093Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6850494Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6850964Z ##[debug] Getting next commit 63f86af0f7891562aef58b7650e41fa88ab5ba09 2020-06-25T11:55:51.6851427Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6851831Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6852232Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6852666Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6853097Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6853498Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6853898Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6854511Z ##[debug] Getting next commit 567be1c00822ada1321c3053caf469099da8728f 2020-06-25T11:55:51.6854973Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6855460Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6855864Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6856296Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6856728Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6857128Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6857528Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6857996Z ##[debug] Getting next commit f7a2bb8f0f41f676bf590cc44096d696f75ad7c6 2020-06-25T11:55:51.6858458Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6858859Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6859260Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6859679Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6860118Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6860519Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6860926Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6861391Z ##[debug] Getting next commit c9f85ede179872015b36fd093411cf50226cdb1c 2020-06-25T11:55:51.6861855Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6862257Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6862656Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6863091Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6863524Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6863925Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6864326Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6864793Z ##[debug] Getting next commit 1a4d60966a21a4579aaa9dbdd696f835da9d0670 2020-06-25T11:55:51.6865258Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6865662Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6866063Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6866497Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6866933Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6867333Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6867734Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6868201Z ##[debug] Getting next commit ec93b6ae6fa3b6d845ae5650779e75412575842f 2020-06-25T11:55:51.6868662Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6869062Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6869466Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6869899Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6870334Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6870730Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6871132Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6871653Z ##[debug] Getting next commit b38682121e4a2c2e641a19851865cc612dbdc9eb 2020-06-25T11:55:51.6872121Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6872527Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6872916Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6873353Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6873784Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6874183Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6874585Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6875051Z ##[debug] Getting next commit 64ae7e335651978753ce08898b6ba764da099d8c 2020-06-25T11:55:51.6875514Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6875917Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6876322Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6876756Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6877296Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6877701Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6878193Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6878661Z ##[debug] Getting next commit f53a37660a9862416af8594b76944e861b75f73f 2020-06-25T11:55:51.6879120Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6879521Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6879923Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6880356Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6880787Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6881188Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6881589Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6882055Z ##[debug] Getting next commit 38b9786c6e73efb6c09bcabf28ef88abce1d90be 2020-06-25T11:55:51.6882514Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6882925Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6883326Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6883909Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6884363Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6884763Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6885165Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6885633Z ##[debug] Getting next commit f72c073214fadc8b0949f28f77c9a6fcfdf379c8 2020-06-25T11:55:51.6886095Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6886499Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6886889Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6887324Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6887757Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6888158Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6888563Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6889034Z ##[debug] Getting next commit 3e6b91723b1559c360b6ce3d0807da4febed1405 2020-06-25T11:55:51.6889498Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6889905Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6890307Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6890740Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6891169Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6891569Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6891971Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6892439Z ##[debug] Getting next commit 418ab389b6868aa8ae52fac3e0d52cb45bf680c4 2020-06-25T11:55:51.6892899Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6893300Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6893703Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6894138Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6894575Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6894977Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6895382Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6895849Z ##[debug] Getting next commit dd81ef582792eed7990d7de695c959000b51dc06 2020-06-25T11:55:51.6896310Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6896712Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6897114Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6897547Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6897978Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6898377Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6898778Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6899243Z ##[debug] Getting next commit 1a98e383720aaec2ae2ac5547b5dee78e2bf1e28 2020-06-25T11:55:51.6899701Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6900269Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6900673Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6901194Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6901627Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6902028Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6902434Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6902902Z ##[debug] Getting next commit 831eb664cd5f5a4d82761f59f601a42b77d25a4f 2020-06-25T11:55:51.6903365Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6903764Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6904166Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6904601Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6905032Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6905433Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6905833Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6906307Z ##[debug] Getting next commit aed1268a5a2f8ecac0216d5b0c2f8b4c4ecf2f2d 2020-06-25T11:55:51.6906774Z ##[debug] Processing Line No: 47 2020-06-25T11:55:51.6907177Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6907576Z ##[debug] Processing Line No: 48 2020-06-25T11:55:51.6908009Z ##[debug] Nothing to expand, just process the line 2020-06-25T11:55:51.6908438Z ##[debug] Processing Line No: 49 2020-06-25T11:55:51.6908836Z ##[debug] Outputing a blank line 2020-06-25T11:55:51.6909235Z ##[debug] Processing Line No: 50 2020-06-25T11:55:51.6909630Z ##[debug] Ending block @@CSLOOP@@ 2020-06-25T11:55:51.6910000Z Writing output file src/Ssp.QuoteManager.Server/bin/release/netcoreapp2.2/publish/ReleaseNotes.md 2020-06-25T11:55:51.6910488Z Finished writing output file src/Ssp.QuoteManager.Server/bin/release/netcoreapp2.2/publish/ReleaseNotes.md 2020-06-25T11:55:51.6910978Z ##[debug]task result: Succeeded 2020-06-25T11:55:51.6912851Z ##[debug]Processed: ##vso[task.complete result=Succeeded;] 2020-06-25T11:55:51.6915241Z ##[section]Finishing: Generate Release Notes based on Release Comparison API ` These are the debug logs . Please have a look at it.
Firstly, I see from your log I can see that you are using the legacy template format. This does now allow PRs to be detailed in a the release notes. You have to use the Handlebars template format. See the docs template formats.
So, you even though the tool is finding PRs it cannot use them in your release notes, as the legacy template can only shown build , CS and WI details.
The data going into the template processor is
2020-06-25T11:55:51.6087980Z ##[debug]Processing template
2020-06-25T11:55:51.6088700Z ##[debug] WI: 40
2020-06-25T11:55:51.6089031Z ##[debug] CS: 50
2020-06-25T11:55:51.6089340Z ##[debug] PR: 12
2020-06-25T11:55:51.6090940Z ##[debug] Builds: 0
2020-06-25T11:55:51.6091459Z ##[debug] Global Tests: 934
2020-06-25T11:55:51.6091835Z ##[debug] Release Tests: 0
2020-06-25T11:55:51.6092197Z ##[debug] Related WI: 0
2020-06-25T11:55:51.6092564Z ##[debug]Processing legacy template
The important lines are the WI and CS. These values have been retrieved using the API call
https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/changes?api-version=5.1
and
https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/workitems?api-version=5.1
It is these calls that are returning the 40 WI and 50 CS. This number of WI and CS should also be shown if you look at the build summary in the Azure DevOps API
You can confirm this running the REST API calls, just editing the URLs adding your oganisation , project and buildid.
So in summary I think the task is behaving as expected, the check is that it matches what is shown in the build summary
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days
Describe the bug A clear and concise description of what the bug is. - Whenever i try to use the extension in the form of a template in AZD then i am getting the error message
/MasterTemplateLinux.yml@templates (Line: 153, Col: 5): Unexpected value 'inlinetemplate' /MasterTemplateLinux.yml@templates (Line: 181, Col: 5): Unexpected value 'sortWi' /MasterTemplateLinux.yml@templates (Line: 182, Col: 5): Unexpected value 'searchCrossProjectForPRs'
Remember that there are a number of Azure DevOps (VSTS) extensions in this repo so please say which one you are using, and if an extension contains multiple tasks which task also `steps:
task: richardfennellBM.BM-VSTS-XplatGenerateReleaseNotes.XplatGenerate-Release-Notes.XplatGenerateReleaseNotes@2
displayName: 'Generate Release Notes based on Release Comparison API'
inputs:
outputfile: '$(Agent.BuildDirectory)\ReleaseNotes.md'
templateLocation: InLine
inlinetemplate: |
BUILD NOTES
Build Number - $(Build.BuildNumber) Build Id - $(Build.BuildId) Build Source Branch - $(Build.SourceBranch) Build Name - $(Build.DefinitionName) Build Reason - $(Build.Reason)
DESCRIPTION
@@WILOOP:RN-OVERVIEW@@ ${widetail.fields['System.Description']} @@WILOOP:RN-OVERVIEW@@
FEATURES
@@WILOOP:RN-FEATURES@@ ${widetail.fields['System.Description']} @@WILOOP:RN-FEATURES@@
Associated work items
@@WILOOP@@
${widetail.fields['System.WorkItemType']} #${widetail.id} Assigned by: ${widetail.fields['System.AssignedTo']} - ${widetail.fields['System.Title']} @@WILOOP@@
Associated commits
@@CSLOOP@@
sortWi: true
searchCrossProjectForPRs: false`
To Reproduce Steps to reproduce the behavior:
Expected behavior A clear and concise description of what you expected to happen.- This works fine when i use it just in the form of a task. `# BUILD NOTES
Build Number - 20200624.4 Build Id - 29021 Build Source Branch - refs/heads/master Build Name - SSP Quote Manager - CI build Build Reason - Manual
DESCRIPTION
None
FEATURES
None
Associated work items
None
Associated commits
None `
Screenshots If applicable, add screenshots to help explain your problem.
Logs Please provide debug logs of the problem, remember you can get these by setting a build/release variable
system.debug=true
. If you don't provide detailed logs when you raise the issue it will almost certainly be the first request I make to diagnose the problem*What is the issue see:
Currently i am using it with AZD hosted agents where my pipelines are running . Please suggest if i am doing something wrong at my end ?
Additional context Add any other context about the problem here.