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

2021-12-12 Thread Mike Bayer
On Sat, Dec 11, 2021, at 12:36 PM, sairohith yerramilli wrote: > > 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

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

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

2021-12-09 Thread Mike Bayer
these fixtures are only for use within a pytest test suite that is using SQLAlchemy's plugins. is this for a third party dialect project? On Thu, Dec 9, 2021, at 9:42 AM, sairohith yerramilli wrote: > Hi > I am facing an issue when importing fixtures from sqlalchemy in version > 1.3.16 and

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

2021-12-09 Thread sairohith yerramilli
Hi I am facing an issue when importing fixtures from sqlalchemy in version 1.3.16 and above. When i am trying to import fixtures from sqlalchemy i.e "from sqlachemy.testing import fixtures" it throwing me an attribute error says 'NoneType' object has no attribute 'fixture' This change in