Skip to content

Commit e0eab7c

Browse files
chelsea-lintswast
andauthored
chore: vendor ibis paritial codes for future v9 upgrade (#944)
* chore: vendor ibis paritial codes for future v9 upgrade * doctest skips ibis folder * Import from bigframes_vendored if possible --------- Co-authored-by: Tim Sweña (Swast) <[email protected]>
1 parent 9ce10b4 commit e0eab7c

File tree

9 files changed

+4795
-2
lines changed

9 files changed

+4795
-2
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,5 @@ repos:
3939
hooks:
4040
- id: mypy
4141
additional_dependencies: [types-requests, types-tabulate, pandas-stubs]
42-
args: ["--check-untyped-defs", "--explicit-package-bases", '--exclude="^third_party"', "--ignore-missing-imports"]
42+
exclude: "^third_party"
43+
args: ["--check-untyped-defs", "--explicit-package-bases", "--ignore-missing-imports"]

noxfile.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,12 @@ def doctest(session: nox.sessions.Session):
384384
run_system(
385385
session=session,
386386
prefix_name="doctest",
387-
extra_pytest_options=("--doctest-modules", "third_party"),
387+
extra_pytest_options=(
388+
"--doctest-modules",
389+
"third_party",
390+
"--ignore",
391+
"third_party/bigframes_vendored/ibis",
392+
),
388393
test_folder="bigframes",
389394
check_cov=True,
390395
)

0 commit comments

Comments
 (0)