Re: [sqlalchemy] Not able to importing fixtures from sqlalchemy from 1.3.16 version

2021-12-11 Thread sairohith yerramilli
Hi, Thank you for response. I would like to inform you that , for testing that code I am using pytest only. What i am facing is, it is worked properly till Sqlalchemy version 1.3.15. When I upgraded the Sqlalchemy version to 1.3.17 ,mentioned piece of code is failing at import level

Re: [sqlalchemy] Not able to importing fixtures from sqlalchemy from 1.3.16 version

2021-12-11 Thread Mike Bayer
not expected to work right now unless you run pytest and you have the appropriate project layout installed as documented at https://github.com/sqlalchemy/sqlalchemy/blob/main/README.dialects.rst On Sat, Dec 11, 2021, at 3:49 AM, sairohith yerramilli wrote: > Hi > > from sqlalchemy.testing

Re: [sqlalchemy] Not able to importing fixtures from sqlalchemy from 1.3.16 version

2021-12-11 Thread sairohith yerramilli
Hi from sqlalchemy.testing import fixtures, AssertsCompiledSQL from sqlalchemy.sql.functions import ReturnTypeFromArgs from sqlalchemy import select from sqlalchemy.sql import column class isnull(ReturnTypeFromArgs): name = 'isnull' class