Skip sqlite module test for python3.11

This commit is contained in:
Mikhail Koliada 2021-12-21 18:58:10 +03:00
parent 5aa825ba9f
commit 1499930abd

View File

@ -47,7 +47,7 @@ Describe "Tests" {
"python ./sources/simple-test.py" | Should -ReturnZeroExitCode
}
if ($Version -ge "3.2.0") {
if (($Version -ge "3.2.0") -and ($Version -ne "3.11.0-alpha.3")) {
It "Check if sqlite3 module is installed" {
"python ./sources/python-sqlite3.py" | Should -ReturnZeroExitCode
}