Skip to content

Commit eac8d45

Browse files
committed
Trying to fix test filters with quoted filter expression, since it contains spaces and special characters.
1 parent 86f06f6 commit eac8d45

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)