You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Alembic lacks a set of specific "suite" tests similar to what SQLAlchemy has for supporting third-party dialects.
Describe the solution you'd like
Create such a test suite, presumably in "alembic/testing/suite". Ensure that those tests are visible from a normal pip install alembic.
Describe alternatives you've considered
It is possible to run all of the current tests from the Alembic source tree, but that includes many tests that are either strictly internal to Alembic or address idiosyncrasies of the SQLA internal dialects (SQLite, Oracle, etc.).
First steps
Review current Alembic tests and identify candidates for inclusion in the "suite" tests, specifically those that are not
testing Alembic internals (database-agnostic), or
testing some esoteric behaviour for one of the SQLA internal dialects.
The text was updated successfully, but these errors were encountered:
I moved "test_op.py" into the Alembic suite because it was one of the tests that tripped up the CrDB dialect and therefore provided the opportunity to work around the issues
OK so that's great, good start, so what we need to do here and I will help, is identify "backend" tests and also write new ones that only exercise things the DB impl needs.
Is your feature request related to a problem? Please describe.
Alembic lacks a set of specific "suite" tests similar to what SQLAlchemy has for supporting third-party dialects.
Describe the solution you'd like
Create such a test suite, presumably in "alembic/testing/suite". Ensure that those tests are visible from a normal
pip install alembic
.Describe alternatives you've considered
It is possible to run all of the current tests from the Alembic source tree, but that includes many tests that are either strictly internal to Alembic or address idiosyncrasies of the SQLA internal dialects (SQLite, Oracle, etc.).
First steps
Review current Alembic tests and identify candidates for inclusion in the "suite" tests, specifically those that are not
The text was updated successfully, but these errors were encountered: