]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commit
remove DB-based skips on non-backend tests
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 29 Oct 2025 13:33:42 +0000 (09:33 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 29 Oct 2025 13:36:01 +0000 (09:36 -0400)
commitabef1d86797a1883761197deb96b50e18344684d
treeb50514a2e877cdcf574d8ca95c02b82adc7091fc
parent35e1cdd117c98449703a9fc82f39ef6ea1c4807d
remove DB-based skips on non-backend tests

for tests that are testing for SQL compilation only,
there's no need to limit based on DB backend since we aren't
using it.  this avoids the awkward situation where tests like
test_sqlite.py -> test_create_table_with_comment_ignored would
be skipped when running the test suite against sqlite, but would
run just fine when running against any other DB (because those DBs
dont have a comment limitation and the test is just a compilation
test).

Change-Id: Iecd482e8c1034b28649ce5390dac0d0ddea83790
tests/test_mssql.py
tests/test_op.py
tests/test_oracle.py
tests/test_postgresql.py
tests/test_sqlite.py