Skip to content

Commit aa962e0

Browse files
committed
revert bigframes due to failing system test
1 parent b64e564 commit aa962e0

2 files changed

Lines changed: 53 additions & 6 deletions

File tree

packages/bigframes/mypy.ini

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# https://mypy.readthedocs.io/en/stable/config_file.html#config-file
2+
3+
[mypy]
4+
exclude = ^third_party/
5+
6+
[mypy-google.auth.*]
7+
ignore_missing_imports = True
8+
9+
[mypy-cloudpickle.*]
10+
ignore_missing_imports = True
11+
12+
[mypy-flask]
13+
ignore_missing_imports = True
14+
15+
[mypy-pydata_google_auth]
16+
ignore_missing_imports = True
17+
18+
[mypy-google.colab]
19+
ignore_missing_imports = True
20+
21+
[mypy-google.iam.*]
22+
ignore_missing_imports = True
23+
24+
[mypy-pytz]
25+
ignore_missing_imports = True
26+
27+
[mypy-pyarrow]
28+
ignore_missing_imports = True
29+
30+
[mypy-ibis.*]
31+
ignore_missing_imports = True
32+
33+
[mypy-ipywidgets]
34+
ignore_missing_imports = True
35+
36+
[mypy-pyarrow.feather]
37+
ignore_missing_imports = True
38+
39+
[mypy-google.cloud.pubsub]
40+
ignore_missing_imports = True
41+
42+
[mypy-google.cloud.bigtable]
43+
ignore_missing_imports = True
44+
45+
[mypy-anywidget]
46+
ignore_missing_imports = True
47+
48+
[mypy-bigframes_vendored.*]
49+
ignore_errors = True

packages/bigframes/noxfile.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060

6161
DEFAULT_PYTHON_VERSION = "3.14"
6262

63-
ALL_PYTHON = ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
63+
ALL_PYTHON = ["3.10", "3.11", "3.12", "3.13", "3.14"]
6464
UNIT_TEST_STANDARD_DEPENDENCIES = [
6565
"mock",
6666
PYTEST_VERSION,
@@ -250,8 +250,6 @@ def install_unittest_dependencies(session, install_test_extra, *constraints):
250250

251251
def run_unit(session, install_test_extra):
252252
"""Run the unit test suite."""
253-
if session.python == "3.15":
254-
session.skip("Wait until pyproj has 3.15 wheels")
255253
constraints_path = str(
256254
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
257255
)
@@ -291,7 +289,7 @@ def unit(session, test_extra):
291289
unit_noextras(session)
292290

293291

294-
@nox.session(python=DEFAULT_PYTHON_VERSION)
292+
@nox.session(python=ALL_PYTHON[-1])
295293
def unit_noextras(session):
296294
run_unit(session, install_test_extra=False)
297295

@@ -658,7 +656,7 @@ def prerelease(session: nox.sessions.Session, tests_path, extra_pytest_options=(
658656
)
659657

660658

661-
@nox.session(python=DEFAULT_PYTHON_VERSION)
659+
@nox.session(python=ALL_PYTHON[-1])
662660
def unit_prerelease(session: nox.sessions.Session):
663661
"""Run the unit test suite with prerelease dependencies."""
664662
prerelease(session, os.path.join("tests", "unit"))
@@ -1042,7 +1040,7 @@ def core_deps_from_source(session, protobuf_implementation):
10421040
)
10431041

10441042

1045-
@nox.session(python=DEFAULT_PYTHON_VERSION)
1043+
@nox.session(python=ALL_PYTHON[-1])
10461044
def prerelease_deps(session):
10471045
"""Run all tests with prerelease versions of dependencies installed."""
10481046
# TODO(https://github.com/googleapis/google-cloud-python/issues/16014):

0 commit comments

Comments
 (0)