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 17b1cd0 commit 281024aCopy full SHA for 281024a
tests/python-tests.ps1
@@ -21,9 +21,14 @@ function Analyze-MissingModules([string] $buildOutputLocation) {
21
$regexMatch = [regex]::match($SplitBuiltOutput, $Pattern)
22
if ($regexMatch.Success)
23
{
24
+ $module = $regexMatch.Groups[1].Value.Trim()
25
Write-Host "Failed missing modules:"
- Write-Host $regexMatch.Groups[1].Value
26
- return 1
+ Write-Host $module
27
+ if ( ($module -eq "_tkinter") -and ($Version -eq "3.10.0-alpha.6") ) {
28
+ Write-Host "$module $Version ignored"
29
+ } else {
30
+ return 1
31
+ }
32
}
33
34
return 0
@@ -82,4 +87,4 @@ Describe "Tests" {
82
87
"./dist/simple-test" | Should -ReturnZeroExitCode
83
88
84
89
85
-}
90
+}
0 commit comments