diff options
| author | Gord Thompson <gord@gordthompson.com> | 2019-12-27 13:39:23 -0700 |
|---|---|---|
| committer | Gord Thompson <gord@gordthompson.com> | 2019-12-27 13:39:23 -0700 |
| commit | 57fa3c067083a7d5a67301a251e5cd492865401c (patch) | |
| tree | 528e1fdc671c3bb10355e7698b759d86a1684691 | |
| parent | f1a22596e2283371f2216245ac4b7ff9a0fb6a9a (diff) | |
| download | sqlalchemy-57fa3c067083a7d5a67301a251e5cd492865401c.tar.gz | |
Fix comment re: ODBC driver name on Windows.
| -rw-r--r-- | test/requirements.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/requirements.py b/test/requirements.py index d9e73c898..11ef93b1d 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -1300,8 +1300,8 @@ class DefaultRequirements(SuiteRequirements): drivername = conn.connection.connection.getinfo( config.db.dialect.dbapi.SQL_DRIVER_NAME ) - # on linux this is 'libmsodbcsql-13.1.so.9.2'. - # don't know what it is on windows + # on linux this is something like 'libmsodbcsql-13.1.so.9.2'. + # on Windows this is something like 'msodbcsql17.dll'. return "msodbc" in drivername return only_if( |
