From: Gord Thompson Date: Wed, 5 May 2021 00:07:43 +0000 (-0600) Subject: Update README.dialects.rst X-Git-Tag: rel_1_4_14~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b5927dd9229d9ce85fc2ba25dad10ecbb749195c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Update README.dialects.rst Update link to sqlalchemy-access, plus a few minor tweaks Change-Id: Ief2876760edf4f7cec311748012cb0944df3babd --- diff --git a/README.dialects.rst b/README.dialects.rst index e4bf7f2d22..50fcdb7f58 100644 --- a/README.dialects.rst +++ b/README.dialects.rst @@ -37,14 +37,14 @@ The file structure of a dialect is typically similar to the following:: .py requirements.py test/ - conftest.py __init__.py + conftest.py test_suite.py test_.py ... -An example of this structure can be seen in the Access dialect at -https://github.com/sqlalchemy/sqlalchemy-access . +An example of this structure can be seen in the MS Access dialect at +https://github.com/gordthompson/sqlalchemy-access . Key aspects of this file layout include: @@ -61,13 +61,10 @@ Key aspects of this file layout include: create_engine("access+pyodbc://user:pw@dsn") -* setup.cfg - this file contains the traditional contents such as [egg_info], - and [tool:pytest] directives, but also contains new directives that are used +* setup.cfg - this file contains the traditional contents such as + [tool:pytest] directives, but also contains new directives that are used by SQLAlchemy's testing framework. E.g. for Access:: - [egg_info] - tag_build = dev - [tool:pytest] addopts= --tb native -v -r fxX --maxfail=25 -p no:warnings python_files=test/*test_*.py @@ -179,8 +176,11 @@ Key aspects of this file layout include: from sqlalchemy.testing.suite import IntegerTest as _IntegerTest class IntegerTest(_IntegerTest): + + @testing.skip("access") def test_huge_int(self): - # bypass test for feature unsupported by Access ODBC + # bypass this test because Access ODBC fails with + # [ODBC Microsoft Access Driver] Optional feature not implemented. return Going Forward