mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 23:09:40 +00:00
Build Python3 for nix and darwin with enabled loadable sqlite extensions
This commit is contained in:
@ -41,6 +41,12 @@ Describe "Tests" {
|
||||
"python ./sources/simple-test.py" | Should -ReturnZeroExitCode
|
||||
}
|
||||
|
||||
if ($Version -ge "3.2.0") {
|
||||
It "Check if sqlite3 module is installed" {
|
||||
"python ./sources/python-sqlite3.py" | Should -ReturnZeroExitCode
|
||||
}
|
||||
}
|
||||
|
||||
if (IsNixPlatform $Platform) {
|
||||
|
||||
It "Check for failed modules in build_output" {
|
||||
|
19
tests/sources/python-sqlite3.py
Normal file
19
tests/sources/python-sqlite3.py
Normal file
@ -0,0 +1,19 @@
|
||||
import sqlite3
|
||||
from sqlite3 import Error
|
||||
|
||||
def create_connection(db_file):
|
||||
""" create a database connection to a SQLite database """
|
||||
conn = None
|
||||
try:
|
||||
print('Sqlite3 version: ', sqlite3.version)
|
||||
conn = sqlite3.connect(db_file)
|
||||
conn.enable_load_extension(True)
|
||||
except Error as e:
|
||||
print(e)
|
||||
exit(1)
|
||||
finally:
|
||||
if conn:
|
||||
conn.close()
|
||||
|
||||
if __name__ == '__main__':
|
||||
create_connection(r"pythonsqlite.db")
|
Reference in New Issue
Block a user