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

Commit 4a5c291

Browse files
1 parent 2492a0c commit 4a5c291

4 files changed

Lines changed: 10 additions & 11 deletions

File tree

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def default(session, install_extras=True):
212212
else:
213213
install_target = "."
214214
session.install("-e", install_target, "-c", constraints_path)
215-
session.run("python", "-m", "pip", "freeze")
215+
216216
# Run py.test against the unit tests.
217217
session.run(
218218
"py.test",

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,3 @@ profile_file=.sqlalchemy_dialect_compliance-profiles.txt
2525
[tool:pytest]
2626
addopts= --tb native -v -r fxX -p no:warnings
2727
python_files=tests/*test_*.py
28-
markers =
29-
mypy: marks tests related to mypy (deselect with '-m "not mypy"')
30-
backend

sqlalchemy_bigquery/requirements.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import sqlalchemy.testing.requirements
2626
import sqlalchemy.testing.exclusions
2727
from sqlalchemy.testing.exclusions import against, only_on
28+
2829
supported = sqlalchemy.testing.exclusions.open
2930
unsupported = sqlalchemy.testing.exclusions.closed
3031

tests/sqlalchemy_dialect_compliance/test_dialect_compliance.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -420,8 +420,8 @@ def test_simple_offset(self):
420420

421421
test_bound_offset = test_simple_offset
422422
test_expr_offset = test_simple_offset_zero = test_simple_offset
423-
test_limit_offset_nobinds = test_simple_offset # TODO figure out
424-
# how to prevent this from failing
423+
test_limit_offset_nobinds = test_simple_offset # TODO figure out
424+
# how to prevent this from failing
425425
# The original test is missing an order by.
426426

427427
# Also, note that sqlalchemy union is a union distinct, not a
@@ -628,8 +628,9 @@ def test_insert_from_select_round_trip(self):
628628
def test_select_recursive_round_trip(self):
629629
pass
630630

631-
del ComponentReflectionTest # Multiple tests re: CHECK CONSTRAINTS, etc which
632-
# BQ does not support
631+
632+
del ComponentReflectionTest # Multiple tests re: CHECK CONSTRAINTS, etc which
633+
# BQ does not support
633634
# class ComponentReflectionTest(_ComponentReflectionTest):
634635
# @pytest.mark.skip("Big query types don't track precision, length, etc.")
635636
# def course_grained_types():
@@ -641,8 +642,8 @@ def test_select_recursive_round_trip(self):
641642
# def test_get_indexes(self):
642643
# pass
643644

644-
del ArrayTest # only appears to apply to postgresql
645-
del BizarroCharacterFKResolutionTest
645+
del ArrayTest # only appears to apply to postgresql
646+
del BizarroCharacterFKResolutionTest
646647
del NumericTest.test_float_as_float
647648
del NumericTest.test_float_as_decimal
648-
del HasTableTest.test_has_table_cache # TODO confirm whether BQ has table caching
649+
del HasTableTest.test_has_table_cache # TODO confirm whether BQ has table caching

0 commit comments

Comments
 (0)