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

Commit 1e54e77

Browse files
1 parent 07a1e65 commit 1e54e77

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

noxfile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,6 @@ def cover(session):
417417
test runs (not system test runs), and then erases coverage data.
418418
"""
419419
session.install("coverage", "pytest-cov")
420-
421420
session.run("coverage", "report", "--show-missing", "--fail-under=100")
422421

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

sqlalchemy_bigquery/test.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
from sqlalchemy.sql.expression import cast
22
from sqlalchemy import String, func
3+
34
code_coding = db.query(func.unnest(self.model.code_coding)).subquery()
45
conditions.append(
5-
and_(cast(code_coding.c.code, String) == "H", cast(code_coding.c.display, String) == "BLAST")
6-
)
6+
and_(
7+
cast(code_coding.c.code, String) == "H",
8+
cast(code_coding.c.display, String) == "BLAST",
9+
)
10+
)

0 commit comments

Comments
 (0)