Skip to content

Commit 74587f9

Browse files
committed
Task 41736: Merge feat/azure-split to main: Step 2 - New files
- Trying to fix shell argument quoting for --filter.
1 parent 8cc25d9 commit 74587f9

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

eng/pipelines/jobs/test-abstractions-package-ci-job.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
$(buildArguments)
171171
--no-build
172172
-f ${{ runtime }}
173-
--filter "category != failing & category != flaky"
173+
--filter '"category != failing & category != flaky"'
174174
175175
- task: DotNetCoreCLI@2
176176
displayName: Test Flaky [${{ runtime }}]
@@ -182,7 +182,7 @@ jobs:
182182
$(buildArguments)
183183
--no-build
184184
-f ${{ runtime }}
185-
--filter "category = flaky"
185+
--filter '"category = flaky"'
186186
187187
# Run the tests for each .NET Framework runtime.
188188
- ${{ each runtime in parameters.netFrameworkRuntimes }}:
@@ -196,7 +196,7 @@ jobs:
196196
$(buildArguments)
197197
--no-build
198198
-f ${{ runtime }}
199-
--filter "category != failing & category != flaky"
199+
--filter '"category != failing & category != flaky"'
200200
201201
- task: DotNetCoreCLI@2
202202
displayName: Test Flaky [${{ runtime }}]
@@ -208,4 +208,4 @@ jobs:
208208
$(buildArguments)
209209
--no-build
210210
-f ${{ runtime }}
211-
--filter "category = flaky"
211+
--filter '"category = flaky"'

eng/pipelines/jobs/test-azure-package-ci-job.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ jobs:
305305
$(buildArguments)
306306
--no-build
307307
-f ${{ runtime }}
308-
--filter "category != failing & category != flaky"
308+
--filter '"category != failing & category != flaky"'
309309
310310
- task: DotNetCoreCLI@2
311311
displayName: Test Flaky [${{ runtime }}]
@@ -324,7 +324,7 @@ jobs:
324324
$(buildArguments)
325325
--no-build
326326
-f ${{ runtime }}
327-
--filter category = flaky"
327+
--filter '"category = flaky"'
328328
329329
# Run the tests for each .NET Framework runtime.
330330
- ${{ each runtime in parameters.netFrameworkRuntimes }}:
@@ -345,7 +345,7 @@ jobs:
345345
$(buildArguments)
346346
--no-build
347347
-f ${{ runtime }}
348-
--filter "category != failing & category != flaky"
348+
--filter '"category != failing & category != flaky"'
349349
350350
- task: DotNetCoreCLI@2
351351
displayName: Test Flaky [${{ runtime }}]
@@ -364,4 +364,4 @@ jobs:
364364
$(buildArguments)
365365
--no-build
366366
-f ${{ runtime }}
367-
--filter "category = flaky"
367+
--filter '"category = flaky"'

0 commit comments

Comments
 (0)