Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit c4c9976

Browse files
committed
Fixed small error in compliance tests, added pip freeze for owl bot testing
1 parent 2492a0c commit c4c9976

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

noxfile.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,9 @@ def cover(session):
416416
test runs (not system test runs), and then erases coverage data.
417417
"""
418418
session.install("coverage", "pytest-cov")
419+
420+
session.run("python", "-m", "pip", "freeze")
421+
419422
session.run("coverage", "report", "--show-missing", "--fail-under=100")
420423

421424
session.run("coverage", "erase")

tests/sqlalchemy_dialect_compliance/test_dialect_compliance.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,13 @@
4848

4949
from sqlalchemy.testing.suite.test_types import (
5050
ArrayTest,
51-
NumericTest,
5251
)
5352

5453
from sqlalchemy.testing.suite.test_reflection import (
5554
BizarroCharacterFKResolutionTest,
5655
ComponentReflectionTest,
5756
OneConnectionTablesTest,
58-
HasTableTest as _HasTableTest,
57+
HasTableTest,
5958
)
6059

6160
if packaging.version.parse(sqlalchemy.__version__) >= packaging.version.parse("2.0"):
@@ -643,6 +642,4 @@ def test_select_recursive_round_trip(self):
643642

644643
del ArrayTest # only appears to apply to postgresql
645644
del BizarroCharacterFKResolutionTest
646-
del NumericTest.test_float_as_float
647-
del NumericTest.test_float_as_decimal
648645
del HasTableTest.test_has_table_cache # TODO confirm whether BQ has table caching

0 commit comments

Comments
 (0)