Skip to content

Commit

Permalink
Fix "Community.Activities Integration Tests" pipeline Python error
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandru-petre committed Jan 26, 2025
1 parent dcae5e0 commit 5d7c62d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Activities/.pipelines/tests/steps/run_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ steps:
ignoreLASTEXITCODE: true
script: |
cd ${{ parameters.packagesFolder }}
$file = Get-ChildItem -Path .\ -Filter *.nupkg -Recurse -File -Name -Exclude *symbols*
$file = Get-ChildItem -Path .\ -Filter *.nupkg -Recurse -File | Where-Object { $_.Name -like "*.Activities.*" -and $_.Name -notlike "*symbols*" } | Select-Object -ExpandProperty Name
Write-Host "Found activities package file $file"
$dot = $file.LastIndexof('.')
$file = $file.Replace(".nupkg","")
$act = $file.LastIndexof('Activities.')
Expand Down

0 comments on commit 5d7c62d

Please sign in to comment.