From 105f6b74adc54446a5375fc39ad21152ccf42bb7 Mon Sep 17 00:00:00 2001 From: Vladimir Safonkin Date: Wed, 26 Oct 2022 12:14:20 +0200 Subject: [PATCH] Skip sqlite test for python 3.11 and higher (#194) --- tests/python-tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python-tests.ps1 b/tests/python-tests.ps1 index 7f4850c..8f9dcaa 100644 --- a/tests/python-tests.ps1 +++ b/tests/python-tests.ps1 @@ -56,7 +56,7 @@ Describe "Tests" { # } # } - if (($Version -ge "3.2.0") -and -not ([semver]"$($Version.Major).$($Version.Minor)" -eq [semver]"3.11" -and $Version.PreReleaseLabel)) { + if (($Version -ge "3.2.0") -and ($Version -lt "3.11.0")) { It "Check if sqlite3 module is installed" { "python ./sources/python-sqlite3.py" | Should -ReturnZeroExitCode }