mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 23:09:40 +00:00
Add test
This commit is contained in:
@ -89,4 +89,12 @@ Describe "Tests" {
|
|||||||
"./dist/simple-test" | Should -ReturnZeroExitCode
|
"./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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
8
tests/sources/tcltk-86.py
Normal file
8
tests/sources/tcltk-86.py
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import tkinter
|
||||||
|
import _tkinter
|
||||||
|
|
||||||
|
lib = tkinter.Tk().getvar('tk_version')
|
||||||
|
header = _tkinter.TK_VERSION
|
||||||
|
|
||||||
|
if lib != '8.6' or header != '8.6':
|
||||||
|
exit(1)
|
Reference in New Issue
Block a user