ci/windows: enable full python unit test setup for windows

This commit is contained in:
Sri CHaRan
2026-02-02 08:23:48 +05:30
parent 238f3dd1d9
commit bf5ef0140a
2 changed files with 31 additions and 5 deletions

View File

@@ -6,8 +6,12 @@
# For a full list of authors see the git log.
import itertools
import sys
import asyncio
from pathlib import Path
if sys.platform == 'win32':
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
import psycopg
from psycopg import sql as pysql
import pytest