diff --git a/python-asyncpg.changes b/python-asyncpg.changes index f1af0a1..f4652d4 100644 --- a/python-asyncpg.changes +++ b/python-asyncpg.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Oct 14 07:33:54 UTC 2022 - Daniel Garcia + +- Disable failing test test_executemany_uvloop_ssl_issue_700, because + the ssl_user role doesn't have permission to create tables by default with + the current postgresql configuration. + ------------------------------------------------------------------- Thu Aug 4 08:57:47 UTC 2022 - Otto Hollmann diff --git a/python-asyncpg.spec b/python-asyncpg.spec index 37261e7..0852305 100644 --- a/python-asyncpg.spec +++ b/python-asyncpg.spec @@ -54,7 +54,7 @@ A fast PostgreSQL Database Client Library for Python/asyncio. PostgreSQL and Python/asyncio with clean implementation %prep -%setup -q -n asyncpg-%{version} +%autosetup -p1 -n asyncpg-%{version} # no uvloop in python36 but in newer flavors sed -i asyncpg/_testbase/__init__.py \ -e "/import re/ a import sys" \ @@ -78,6 +78,9 @@ export USE_UVLOOP=1 %endif # fails inside obs chroot donttest="test_timetz_encoding" +# fails because ssl_user doesn't have permission to create tables +# permission denied for schema public +donttest+=" or test_executemany_uvloop_ssl_issue_700" mv asyncpg .asyncpg %pytest_arch -rs -k "not ($donttest)"