From 1499930abd1b3eda3b0a6caf55bc4b5814c1ce25 Mon Sep 17 00:00:00 2001 From: Mikhail Koliada Date: Tue, 21 Dec 2021 18:58:10 +0300 Subject: [PATCH] Skip sqlite module test for python3.11 --- 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 969f315..7ffd59d 100644 --- a/tests/python-tests.ps1 +++ b/tests/python-tests.ps1 @@ -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 }