Skip to content

Commit 16c515c

Browse files
committed
add logging
1 parent ea00b66 commit 16c515c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

eng/ci/templates/public/jobs/build-test-public.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,12 @@ jobs:
4747
4848
# Run dotnet test to list the tests and filter for those matching 'Test_'
4949
$testsOutput = dotnet test . --no-build --list-tests
50+
51+
Write-Host "Test output: $testsOutput"
5052
$tests = $testsOutput | Select-String -Pattern 'Test_' | ForEach-Object { $_.Line }
5153
54+
Write-Host "Value of tests: $tests"
55+
5256
# Call the create_slicing_filter_condition script with the tests as arguments
5357
& bash ./createSlicingFilterCondition.sh -Tests $tests
5458
displayName: 'Create slicing filter condition'

0 commit comments

Comments
 (0)