Check tcltk for any platform and version

This commit is contained in:
Sergey Dolin
2022-06-17 13:55:32 +02:00
parent 045abfcc36
commit edcd32dbf1
2 changed files with 10 additions and 12 deletions

View File

@ -49,6 +49,13 @@ Describe "Tests" {
"python ./sources/simple-test.py" | Should -ReturnZeroExitCode
}
# linux has no display name and no $DISPLAY environment variable - skip tk test
if (-not (($Platform -match "ubuntu") -or ($Platform -match "linux"))) {
It "Check if tcl/tk has the same headed and library versions" {
"python ./sources/tcltk.py" | Should -ReturnZeroExitCode
}
}
if (($Version -ge "3.2.0") -and -not ([semver]"$($Version.Major).$($Version.Minor)" -eq [semver]"3.11" -and $Version.PreReleaseLabel)) {
It "Check if sqlite3 module is installed" {
"python ./sources/python-sqlite3.py" | Should -ReturnZeroExitCode
@ -89,12 +96,4 @@ Describe "Tests" {
"./dist/simple-test" | Should -ReturnZeroExitCode
}
}
if (($Platform -match "macos") -or ($Platform -match "darwin")) {
if ($Version -gt "3.7.12" ) {
It "Check if python above 3.7.12 use tcl/tk v8.6" {
"python ./sources/tcltk-86.py" | Should -ReturnZeroExitCode
}
}
}
}