Skip to content

Commit 65a7afc

Browse files
authored
Enable test query for exact test name (#1900)
1 parent 82873fc commit 65a7afc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,9 @@ function Test([String] $target, [String] $configuration, [String[]] $frameworks,
220220
"cpython" { $tasks += createTask "cpython" "TestCategory=CPython" }
221221
default {
222222
if ($filter.ToLower().StartsWith('ironpython')) {
223-
$tasks += createTask "query" "TestCategory=IronPython&$filter"
223+
$tasks += createTask "query" "TestCategory=IronPython&Name=$framework.$filter"
224224
} elseif ($filter.ToLower().StartsWith('cpython')) {
225-
$tasks += createTask "query" "TestCategory=CPython&$filter"
225+
$tasks += createTask "query" "TestCategory=CPython&Name=$framework.$filter"
226226
} else {
227227
$tasks += createTask "query" $filter
228228
}

0 commit comments

Comments
 (0)