We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea00b66 commit 16c515cCopy full SHA for 16c515c
eng/ci/templates/public/jobs/build-test-public.yml
@@ -47,8 +47,12 @@ jobs:
47
48
# Run dotnet test to list the tests and filter for those matching 'Test_'
49
$testsOutput = dotnet test . --no-build --list-tests
50
+
51
+ Write-Host "Test output: $testsOutput"
52
$tests = $testsOutput | Select-String -Pattern 'Test_' | ForEach-Object { $_.Line }
53
54
+ Write-Host "Value of tests: $tests"
55
56
# Call the create_slicing_filter_condition script with the tests as arguments
57
& bash ./createSlicingFilterCondition.sh -Tests $tests
58
displayName: 'Create slicing filter condition'
0 commit comments