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

Commit 60735ff

Browse files
committed
merged from branch
2 parents c4c9976 + 4a5c291 commit 60735ff

4 files changed

Lines changed: 7 additions & 8 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: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -419,8 +419,8 @@ def test_simple_offset(self):
419419

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

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

630-
del ComponentReflectionTest # Multiple tests re: CHECK CONSTRAINTS, etc which
631-
# BQ does not support
630+
631+
del ComponentReflectionTest # Multiple tests re: CHECK CONSTRAINTS, etc which
632+
# BQ does not support
632633
# class ComponentReflectionTest(_ComponentReflectionTest):
633634
# @pytest.mark.skip("Big query types don't track precision, length, etc.")
634635
# def course_grained_types():

0 commit comments

Comments
 (0)