summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGord Thompson <gord@gordthompson.com>2021-05-04 18:07:43 -0600
committerGord Thompson <gord@gordthompson.com>2021-05-05 09:30:24 -0600
commitb5927dd9229d9ce85fc2ba25dad10ecbb749195c (patch)
tree8f100e049cdb8e3f90feeb5ddc33c8da1331775c
parent900d76b8f757a8a42bfb8fc737d24a94eeeac05f (diff)
downloadsqlalchemy-b5927dd9229d9ce85fc2ba25dad10ecbb749195c.tar.gz
Update README.dialects.rst
Update link to sqlalchemy-access, plus a few minor tweaks Change-Id: Ief2876760edf4f7cec311748012cb0944df3babd
-rw-r--r--README.dialects.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/README.dialects.rst b/README.dialects.rst
index e4bf7f2d2..50fcdb7f5 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::
<dbapi>.py
requirements.py
test/
- conftest.py
__init__.py
+ conftest.py
test_suite.py
test_<dialect_specific_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