HodorNV / ALOps

ALOps
56 stars 24 forks source link

Publish Test Results: No Result Found to Publish (TestResults.xml) #652

Closed louagej closed 1 year ago

louagej commented 1 year ago

After running ALOps - Run TestSuite, there are no testresults found

the used yaml:

parameters:
   addPreAction: []
   preCreateDocker: []
   postCreateDocker: []
   preBuildCompile: []
   preCompileApps: []
   postPublishApps: []
   postCompileApps: []
   beforeDockerRemove: []
   postBuildCompile: []
   addPostAction: []
   artifactcountry: ''
   folders: ['app','test']

jobs:
- job: PreActions
  displayName: 'Pre actions'
  #condition: in(variables['bc-artifactversionselect'],'NextMinor','NextMajor')
  steps:
  - checkout: self
    clean: true
    persistCredentials: true
  - powershell: |
        $env:GIT_REDIRECT_STDERR = '2>&1' # Do not report git output as error... However error is also only text now
        git fetch
        git checkout main
        git pull origin main
        git checkout $env:branch
        git fetch
        git pull
        git pull origin main
        git push
    env:
        branch: 'next/$(Build.SourceBranchName)'
    condition: in(variables['bc-artifactversionselect'],'NextMinor','NextMajor')
    displayName: 'Update Next Branch From Main'
  - ${{ parameters.addPreAction }}

- job: DockerBuildCompile
  displayName: 'Docker build & compile'
  #condition: always()
  dependsOn:
    - PreActions
  steps:
  - ${{ parameters.preCreateDocker }}

  - task: ALOpsDockerCreate@1
    displayName: 'ALOPS - Create Docker'
    inputs:
      artifacttype: $(bc-artifacttype)
      artifactversion: $(bc-artifactversion)
      versionselect: $(bc-artifactversionselect)
      artifactcountry: "${{ coalesce( parameters.artifactcountry, '$(bc-artifactcountry)') }}"
      sastoken: $(bc-sastoken)

  - task: ALOpsDockerStart@1
    displayName: 'ALOPS - Start Docker'

  - task: ALOpsDockerExec@1
    inputs:
      inline_script: 'New-Item -Path "c:\run\my" -ItemType Directory -Force:$true -Confirm:$false -ErrorAction SilentlyContinue'

  - task: ALOpsDockerWait@1
    displayName: 'ALOPS - Wait for Docker ready'
    inputs:
      search_string: 'Ready for connections!'

  - task: ALOpsLicenseImport@1
    displayName: 'ALOPS - Import license'
    inputs:
      usedocker: true
      license_path: $(bc-license-path)

  - ${{ parameters.postCreateDocker }}

#- job: BuildCompile
#  displayName: 'Build & compile'
#  dependsOn:
#    - CreateDocker
#  steps:
  - ${{ parameters.preBuildCompile }}

  - task: ALOpsAppPublish@1
    displayName: 'ALOPS - Install AL TestTool'
    condition: eq(variables['bc-installaltesttool'],'true')
    inputs:
      usedocker: true
      installaltesttool: $(bc-installaltesttool)
      skip_verification: true
      install_al_app_names: |
        Tests-TestLibraries
        System Application Test
        System Application Test Library
        Any
        Library Assert
        Test Runner
        Permissions Mock

  - task: DownloadBuildArtifacts@0
    displayName: 'Download previous version from last successful build'
    condition: eq(variables['bc-upgradefromprevious'],'true')
    inputs:
      buildType: 'specific'
      project: $(System.TeamProjectId)
      pipeline: $(System.DefinitionId)
      buildVersionToDownload: 'latestFromBranch'
      branchName: $(Build.SourceBranch)
      downloadType: 'specific'
      itemPattern: |
        **/*.app
        !**/*Test*.app
      downloadPath: '$(System.ArtifactsDirectory)' 

  - task: ALOpsAppPublish@1
    displayName: 'ALOps - Publish Extension: previous version from last successful build'
    condition: eq(variables['bc-upgradefromprevious'],'true')
    inputs:
      usedocker: true
      nav_artifact_app_filter: '*.app'
      skip_verification: true

  - ${{ parameters.preCompileApps }}

  - ${{ each folder in parameters.folders }}:

    - task: ALOpsAppCompiler@1
      displayName: 'ALOps - Compile Extension: ${{ folder }}'
      condition: or(ne('${{ folder }}','test'),eq(variables['bc-testapppublish'],'true'))
      inputs:
        usedocker: true
        nav_app_version: $(bc-artifactversion)$(bc-versionformula)
        targetproject: '${{ folder }}/app.json'
        failed_on_warnings: $(bc-failedonwarnings)
        updatebuildnumber: true
        showmycode: $(bc-showmycode)

    - ${{ parameters.postCompileApps }}

    - task: ALOpsAppSign@1
      displayName: 'ALOps App Sign Extension: ${{ folder }}'
      condition: and(ne(variables['bc-pfx_path'],''),ne('${{ folder }}','test'))
      inputs:
        usedocker: false
        artifact_path: $(ALOPS_COMPILE_ARTIFACT)
        publish_artifact: true
        pfx_path: $(bc-pfx_path)
        pfx_password: $(bc-pfx_password)

    - task: ALOpsAppSignVerify@1
      displayName: 'ALOps App Sign Verify Extension: ${{ folder }}'
      condition: and(ne(variables['bc-pfx_path'],''),ne('${{ folder }}','test'))
      inputs:
        usedocker: false
        artifact_path: $(ALOPS_COMPILE_ARTIFACT)

    - task: ALOpsAppPublish@1
      displayName: 'ALOps - Publish Extension: ${{ folder }}'
      inputs:
        usedocker: true
        nav_artifact_app_filter: '*.app'
        skip_verification: true

    - task: ALOpsAppRuntimePackage@1
      displayName: 'ALOps - Create runtime: ${{ folder }}'
      condition: and(ne('${{ folder }}','test'),eq(variables['bc-createruntime'],'true'))
      inputs:
        usedocker: true
        targetproject: '${{ folder }}/app.json'
        publish_artifact: true
        showmycode: true

  - ${{ parameters.postPublishApps }}

  - task: ALOpsAppTest@1
    displayName: 'ALOps - Run TestSuite'
    condition: eq(variables['bc-testrun'],'true')
    inputs:
      usedocker: true
      import_action: "Skip"
      import_testtoolkit: false
      testpage: '130455'
      testsuite: 'DEFAULT'
      failed_test_action: 'Ignore'
      testfilter: $(bc-testrunfilter)

  - task: PublishTestResults@2
    displayName: 'ALOps - Publish Test Results **/TestResults.xml'
    condition: eq(variables['bc-testrun'],'true')
    inputs:
      testResultsFormat: XUnit
      testResultsFiles: '**/TestResults.xml'
      testRunTitle: 'BC Test Results: $(Build.BuildId)'

  - ${{ parameters.beforeDockerRemove }}

  - task: ALOpsDockerRemove@1
    enabled: true
    condition: always()

  - ${{ parameters.postBuildCompile }}

- job: PostActions
  displayName: 'Post actions'
  dependsOn:
    - DockerBuildCompile
  steps:

  - checkout: self
    clean: true
    persistCredentials: true

  - powershell: |
        $env:GIT_REDIRECT_STDERR = '2>&1' # Do not report git output as error... However error is also only text now

        Write-Host "Tagging Build: $env:appversion"

        git tag $env:appversion
        git push origin $env:appversion

    env:
        appversion: $(Build.BuildNumber)
    condition: eq(variables['bc-versiontag'],'true')
    displayName: 'Adding version tag'

  - ${{ parameters.addPostAction }}
2023-07-12T14:14:54.8533124Z ##[section]Starting: ALOps - Run TestSuite
2023-07-12T14:14:54.8631124Z ==============================================================================
2023-07-12T14:14:54.8631423Z Task         : ALOps App Test
2023-07-12T14:14:54.8631688Z Description  : Run AL-TestSuite for Business Central
2023-07-12T14:14:54.8631932Z Version      : 1.457.4270
2023-07-12T14:14:54.8632112Z Author       : Hodor
2023-07-12T14:14:54.8632370Z Help         : Run Business Central Test-Suite and collect results.
2023-07-12T14:14:54.8632677Z ==============================================================================
2023-07-12T14:14:55.6256194Z *** Validate configuration
2023-07-12T14:14:55.7172583Z *** Task Inputs:
2023-07-12T14:14:55.7232493Z 
2023-07-12T14:14:55.7346240Z name                               value
2023-07-12T14:14:55.7348295Z ----                               -----
2023-07-12T14:14:55.7349818Z usedocker                           True
2023-07-12T14:14:55.7351119Z fixed_tag                               
2023-07-12T14:14:55.7352683Z nav_serverinstance                 BC140
2023-07-12T14:14:55.7354276Z tenant                           default
2023-07-12T14:14:55.7355835Z companyname                             
2023-07-12T14:14:55.7357537Z profile                                 
2023-07-12T14:14:55.7359073Z bc_username                             
2023-07-12T14:14:55.7360671Z bc_password                             
2023-07-12T14:14:55.7362705Z bc_authentication        NavUserPassword
2023-07-12T14:14:55.7364278Z bc_webclient_url                        
2023-07-12T14:14:55.7365793Z testfilter           $(bc-testrunfilter)
2023-07-12T14:14:55.7367379Z disabledtests                           
2023-07-12T14:14:55.7369506Z show_available_tests                True
2023-07-12T14:14:55.7371231Z import_testtoolkit                 False
2023-07-12T14:14:55.7372720Z import_action                       Skip
2023-07-12T14:14:55.7374392Z testpage                          130455
2023-07-12T14:14:55.7375893Z testsuite                        DEFAULT
2023-07-12T14:14:55.7377461Z extensionid                             
2023-07-12T14:14:55.7379009Z installaltesttool                  False
2023-07-12T14:14:55.7380583Z failed_test_action                Ignore
2023-07-12T14:14:55.7382246Z override_finsql_path                    
2023-07-12T14:14:55.7383800Z resultfilename           TestResults.xml
2023-07-12T14:14:55.7385549Z testrunnercodeunitid                    
2023-07-12T14:14:55.7385777Z 
2023-07-12T14:14:55.7408226Z 
2023-07-12T14:14:55.7467550Z 
2023-07-12T14:14:55.7606720Z *** For documentation, please visit   : https://www.alops.be/documentation
2023-07-12T14:14:55.7611260Z 
2023-07-12T14:14:55.9887030Z *** ALOps License:
2023-07-12T14:14:55.9908052Z   * Licensed To: Broad Horizon Belgie (Per Run License)
2023-07-12T14:14:55.9911505Z 
2023-07-12T14:14:56.0029967Z *** Importing required PS-Functions
2023-07-12T14:14:56.0313074Z *** Working folder: C:\Agent\_work\45\s
2023-07-12T14:14:56.0319603Z ***
2023-07-12T14:14:56.0326938Z *** Prepare Docker Session
2023-07-12T14:14:56.1089958Z *** Connect Docker Session
2023-07-12T14:14:56.1183620Z *** Initiate Docker Session
2023-07-12T14:14:56.3581710Z *** Set Docker Container ErrorActionPreference = Stop
2023-07-12T14:14:56.6054542Z *** Copy Modules to Docker
2023-07-12T14:14:59.1710225Z *** Setup Docker Session
2023-07-12T14:14:59.2051353Z *** Checking for container-specific Test Assemblies
2023-07-12T14:14:59.2074496Z *** Using container-specific Test Assemblies
2023-07-12T14:14:59.2697862Z *** Import Modules in Docker Session
2023-07-12T14:14:59.4211385Z *** Import UI Client [C:\Run\DevOps\BCAppTest\bin\Microsoft.Dynamics.Framework.UI.Client.dll]
2023-07-12T14:14:59.4300018Z *** Selected module: [C:\Run\DevOps\BCAppTest\bin\Microsoft.Dynamics.Framework.UI.Client.dll]
2023-07-12T14:14:59.4309141Z *** Loading module: [C:\Run\DevOps\BCAppTest\bin\Microsoft.Dynamics.Framework.UI.Client.dll]
2023-07-12T14:14:59.5752507Z *** Import NewtonSoft JSON [C:\Program Files\Microsoft Dynamics NAV\220\Service\Management\Newtonsoft.Json.dll]
2023-07-12T14:14:59.5905817Z *** Import Modules in Docker Session: class_ClientContext
2023-07-12T14:14:59.9275895Z *** Test Context Url: https://e3bb87295cfc/BC/cs?tenant=default
2023-07-12T14:14:59.9283304Z *** Setup BC Credentials in Docker
2023-07-12T14:15:00.0079547Z *** Resolve Docker Credentials
2023-07-12T14:15:00.0507634Z *** Install Test-Tool extension for creating Test-Suites
2023-07-12T14:15:00.1897291Z *** Import NAV/BC Management DLL's [False]
2023-07-12T14:15:00.1955572Z *** Loading assemblies for ServiceTier [BC].
2023-07-12T14:15:00.3974765Z *** Loading assemblies from: [C:\program files\microsoft dynamics nav\220\service]
2023-07-12T14:15:00.4360727Z *** Selected module: [C:\program files\microsoft dynamics nav\220\service\Management\Microsoft.Dynamics.Nav.Management.dll]
2023-07-12T14:15:00.4368029Z *** Loading module: [C:\program files\microsoft dynamics nav\220\service\Management\Microsoft.Dynamics.Nav.Management.dll]
2023-07-12T14:15:00.4971436Z *** Selected module: [C:\program files\microsoft dynamics nav\220\service\Management\Microsoft.Dynamics.Nav.Apps.Management.dll]
2023-07-12T14:15:00.4977144Z *** Loading module: [C:\program files\microsoft dynamics nav\220\service\Management\Microsoft.Dynamics.Nav.Apps.Management.dll]
2023-07-12T14:15:00.5152220Z *** Add Test-Runner Extension for ALOps
2023-07-12T14:15:00.5194932Z *** Installing Applications:
2023-07-12T14:15:00.5296140Z 
2023-07-12T14:15:00.5353062Z Publisher Name Path ProcessOrder
2023-07-12T14:15:00.5355583Z --------- ---- ---- ------------
2023-07-12T14:15:00.5358440Z           Path                  
2023-07-12T14:15:00.5359173Z 
2023-07-12T14:15:00.5360451Z 
2023-07-12T14:15:00.5413344Z *** Get App Info: C:\Run\DevOps\BCAppTest\HodorNV_ALOpsTestRunner_1.0.0.0.app
2023-07-12T14:15:00.8311868Z 
2023-07-12T14:15:00.8315529Z *** Get App Tenant Info
2023-07-12T14:15:01.1250254Z *** Publish App: [Hodor NV / ALOps Test Runner]
2023-07-12T14:15:01.2585017Z *** Sync App: [Hodor NV / ALOps Test Runner]
2023-07-12T14:15:01.3386257Z *** Install App: [Hodor NV / ALOps Test Runner]
2023-07-12T14:15:01.5994867Z ***
2023-07-12T14:15:01.6001078Z 
2023-07-12T14:15:01.6015260Z *** Install Test-Tool extension for creating Test-Suites Finished
2023-07-12T14:15:01.6022851Z *** Set TCP Keep-Alive
2023-07-12T14:15:01.6368199Z *** Start TestSuite
2023-07-12T14:15:01.6724368Z *** Running TestSuite with authentication [NavUserPassword] with User [admin]
2023-07-12T14:15:01.6740338Z *** Run warm-up with page [130455]
2023-07-12T14:15:01.6749900Z *** Warm-up Client Context
2023-07-12T14:15:10.1419250Z *** Create Client Context
2023-07-12T14:15:11.1273335Z *** Add Tests to Default-TestSuite with filter [$(bc-testrunfilter)]
2023-07-12T14:15:11.5665074Z Show form 0001fd97-0000-0001-0c00-0000836bd2d2
2023-07-12T14:15:11.7225630Z Title: Command Line Test Tool Edit - Command Line Test Tool - DEFAULT
2023-07-12T14:15:12.1919493Z Apply filter for Test-Codeunits: [$(bc-testrunfilter)]
2023-07-12T14:15:12.7251271Z Show dialog f51cf5e3-31d1-4644-8a26-043efefc68d7
2023-07-12T14:15:12.7335859Z Title: Dialog 
2023-07-12T14:15:12.7460330Z DIALOG: Dialog  - close Dialog
2023-07-12T14:15:13.0723170Z *** Get Available Tests for suite [DEFAULT] with page [130455]
2023-07-12T14:15:13.2131221Z Show form 0001fd97-0000-0001-0c00-0000836bd2d2
2023-07-12T14:15:13.2217870Z Title: Command Line Test Tool Edit - Command Line Test Tool - DEFAULT
2023-07-12T14:15:13.3238563Z *** Set [CurrentSuiteName] => [DEFAULT]
2023-07-12T14:15:14.8331776Z *** Run Available Tests for suite [DEFAULT] with page [130455]
2023-07-12T14:15:14.9024909Z *** Connect TestClient with page [130455]
2023-07-12T14:15:15.0068863Z Show form 0001fd97-0000-0001-0c00-0000836bd2d2
2023-07-12T14:15:15.0087728Z Title: Command Line Test Tool Edit - Command Line Test Tool - DEFAULT
2023-07-12T14:15:16.2360384Z 
2023-07-12T14:15:16.2368581Z ServerInstance                        : 
2023-07-12T14:15:16.2370125Z PSComputerName                        : e3bb87295cfc1ec1743d4354282d6020ec1922a6f3600b9d9a1ee451c7af1f94
2023-07-12T14:15:16.2370601Z RunspaceId                            : 4846d44e-3002-40e3-a44b-d2230c9bddce
2023-07-12T14:15:16.2370950Z Brief                                 : 
2023-07-12T14:15:16.2371288Z Description                           : 
2023-07-12T14:15:16.2371601Z CompatibilityId                       : 0.0.0.0
2023-07-12T14:15:16.2371938Z PrivacyStatement                      : 
2023-07-12T14:15:16.2372237Z Eula                                  : 
2023-07-12T14:15:16.2372548Z Help                                  : 
2023-07-12T14:15:16.2372850Z Url                                   : 
2023-07-12T14:15:16.2373165Z Logo                                  : 
2023-07-12T14:15:16.2373467Z DeveloperTenantId                     : 
2023-07-12T14:15:16.2373793Z ScreenShots                           : {}
2023-07-12T14:15:16.2379667Z Dependencies                          : {System Application, Microsoft, 1.0.0.0, False, Base Application, Microsoft, 
2023-07-12T14:15:16.2380211Z                                         15.0.0.0, False, Test Runner, Microsoft, 15.0.0.0, False}
2023-07-12T14:15:16.2380583Z Capabilities                          : {}
2023-07-12T14:15:16.2380972Z PackageId                             : 8d34295c-1e51-4bb2-89a9-8ad85b527e47
2023-07-12T14:15:16.2381337Z PublisherAzureActiveDirectoryTenantId : 
2023-07-12T14:15:16.2381690Z AppId                                 : 571bfff6-097c-4019-a6fd-90a5004f352d
2023-07-12T14:15:16.2382175Z Name                                  : ALOps Test Runner
2023-07-12T14:15:16.2382707Z Publisher                             : Hodor NV
2023-07-12T14:15:16.2383222Z Version                               : 1.0.0.0
2023-07-12T14:15:16.2383721Z ExtensionType                         : ModernDev
2023-07-12T14:15:16.2384608Z Scope                                 : Global
2023-07-12T14:15:16.2384937Z Tenant                                : 
2023-07-12T14:15:16.2385094Z 
2023-07-12T14:15:16.2385279Z True
2023-07-12T14:15:16.2389913Z *** XUnit Test results: c:\Run\DevOps\TestResults.xml
2023-07-12T14:15:16.2437553Z <?xml version="1.0" encoding="UTF-8"?>
2023-07-12T14:15:16.2437876Z <assemblies />
2023-07-12T14:15:16.2438027Z 
2023-07-12T14:15:16.2511845Z *** Get XUnit Test file from [c:\Run\DevOps\TestResults.xml] to [C:\Agent\_work\45\s\TestResults.xml]
2023-07-12T14:15:16.4843060Z ComputerType           : Container
2023-07-12T14:15:16.4843734Z ComputerName           : e3bb87295cfc1ec1743d4354282d6020ec1922a6f3600b9d9a1ee451c7af1f94
2023-07-12T14:15:16.4844184Z ContainerId            : e3bb87295cfc1ec1743d4354282d6020ec1922a6f3600b9d9a1ee451c7af1f94
2023-07-12T14:15:16.4844520Z VMName                 : 
2023-07-12T14:15:16.4844802Z VMId                   : 
2023-07-12T14:15:16.4845052Z ConfigurationName      : 
2023-07-12T14:15:16.4845347Z InstanceId             : 4846d44e-3002-40e3-a44b-d2230c9bddce
2023-07-12T14:15:16.4845701Z Id                     : 1
2023-07-12T14:15:16.4845981Z Name                   : WinRM1
2023-07-12T14:15:16.4846769Z Availability           : Available
2023-07-12T14:15:16.4847983Z ApplicationPrivateData : {DebugMode, DebugStop, UnhandledBreakpointMode, PSVersionTable...}
2023-07-12T14:15:16.4849048Z Runspace               : System.Management.Automation.RemoteRunspace
2023-07-12T14:15:16.4849637Z State                  : Opened
2023-07-12T14:15:16.4849951Z IdleTimeout            : -1
2023-07-12T14:15:16.4850239Z OutputBufferingMode    : 
2023-07-12T14:15:16.4851102Z DisconnectedOn         : 
2023-07-12T14:15:16.4851410Z ExpiresOn              : 
2023-07-12T14:15:16.4851578Z 
2023-07-12T14:15:16.4861277Z *** Disconnect Docker session.
2023-07-12T14:15:16.4888762Z *** Docker session removed.
2023-07-12T14:15:16.4989658Z *** Running Tests Completed.
2023-07-12T14:15:16.5091455Z *** Cleanup VSTS Environment: True
2023-07-12T14:15:18.7729663Z ##[section]Finishing: ALOps - Run TestSuite
2023-07-12T14:15:18.7757710Z ##[section]Starting: ALOps - Publish Test Results **/TestResults.xml
2023-07-12T14:15:18.7894557Z ==============================================================================
2023-07-12T14:15:18.7894865Z Task         : Publish Test Results
2023-07-12T14:15:18.7895142Z Description  : Publish test results to Azure Pipelines
2023-07-12T14:15:18.7895363Z Version      : 2.216.2
2023-07-12T14:15:18.7895578Z Author       : Microsoft Corporation
2023-07-12T14:15:18.7895882Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/test/publish-test-results
2023-07-12T14:15:18.7896225Z ==============================================================================
2023-07-12T14:15:19.0652875Z [command]C:\Agent\_work\_tasks\PublishTestResults_0b0f01ed-7dde-43ff-9cbb-e48954daf9b1\2.216.2\modules\TestResultsPublisher.exe @C:\Agent\_work\_temp\87df0880-20be-11ee-b16b-17964bfe5265.txt
2023-07-12T14:15:20.8556471Z Obtained XUnit Test Run Start Date: 2023-07-12T14:15:20.8458762Z and Completed Date: 2023-07-12T14:15:20.8458762Z
2023-07-12T14:15:20.8588225Z No Result Found to Publish 'C:\Agent\_work\45\s\TestResults.xml'.
2023-07-12T14:15:21.0825279Z No build level attachments to publish.
2023-07-12T14:15:21.1727608Z Result Attachments will be stored in LogStore
2023-07-12T14:15:21.3896271Z Run Attachments will be stored in LogStore
2023-07-12T14:15:21.7988335Z ##[section]Async Command Start: PublishTestResultsToEvidenceStore
2023-07-12T14:15:21.7988765Z ##[section]Async Command End: PublishTestResultsToEvidenceStore
2023-07-12T14:15:21.7989815Z ##[section]Finishing: ALOps - Publish Test Results **/TestResults.xml

Expected behavior

Some file with results

Screenshots

image

waldo1001 commented 1 year ago

Doesn't seem there are tests? Are you sure they are installed in the DEFAULT suite?

louagej commented 1 year ago

Hi,

The step ALOPS - Install AL TestTool was installed

image

But I'm not sure what to do to run the default Business Central tests

waldo1001 commented 1 year ago

You're only installing these apps: image

Make sure all apps with tests are installed. Example: image

Then: two options:

- task: ALOpsAppTest@1
  displayName: 'ALOPS - Run TestSuite'
  inputs:
    usedocker: true
    import_action: "Skip"
    import_testtoolkit: false
    testpage: '130455'
    extensionid: '9bf23d52-8194-4857-8896-5e48b24493f6'
    resultfilename: 'TestResults_Job.xml'
    failed_test_action: 'Ignore'
  continueOnError: true   

Resource: https://github.com/HodorNV/ALOps/issues/326

louagej commented 1 year ago

@waldo1001 ,

thank you for the info. Combined with the info you mentioned in https://github.com/HodorNV/ALOps/issues/520, I was able to run tests with the default tests and second with the pte tests.

image