Skip to content

Commit 0601c2b

Browse files
author
MaksimZhukov
committed
Fix condition
1 parent 4eb1751 commit 0601c2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/python-tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function Analyze-MissingModules([string] $buildOutputLocation) {
2424
$module = $regexMatch.Groups[1].Value.Trim()
2525
Write-Host "Failed missing modules:"
2626
Write-Host $module
27-
if ( ($module -eq "_tkinter") -and ( $Version.StartsWith("3.10.0") -and ( ($Version -like "*beta*") -or ($Version -like "*alpha*") ) ) ) {
27+
if ( ($module -eq "_tkinter") -and ( ($Version -like "3.10.0-beta*") -or ($Version -like "3.10.0-alpha*") ) ) {
2828
Write-Host "$module $Version ignored"
2929
} else {
3030
return 1

0 commit comments

Comments
 (0)