Skip to content

Commit c68f029

Browse files
committed
testing
1 parent a0e07bf commit c68f029

5 files changed

Lines changed: 8 additions & 4 deletions

File tree

packages/bigframes/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def run_unit(session, install_test_extra):
285285
def unit(session, test_extra):
286286
if session.python == "3.15":
287287
session.skip(
288-
"Skipping 3.15 until wheels are available for pyproj needed for dependency geopandas"
288+
"Skipping 3.15 until wheels are available for pyarrow. Also pyproj wheels are needed for dependency geopandas."
289289
)
290290
if test_extra:
291291
run_unit(session, install_test_extra=test_extra)

packages/db-dtypes/noxfile.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,10 @@ def prerelease(session, tests_path):
292292
@nox.parametrize("test_type", ["unit", "compliance"])
293293
def unit(session, test_type):
294294
"""Run the unit test suite."""
295+
if session.python == "3.15":
296+
session.skip(
297+
"Skipping 3.15 until wheels are available for pyarrow."
298+
)
295299

296300
# Compliance tests only run on the latest Python version
297301
if test_type == "compliance" and session.python != DEFAULT_PYTHON_VERSION:

packages/google-cloud-bigquery/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def unit(session, test_type):
182182
"""Run the unit test suite."""
183183
if session.python == "3.15":
184184
session.skip(
185-
"Skipping 3.15 until wheels are available for pyproj needed for dependency geopandas"
185+
"Skipping 3.15 until wheels are available for pyarrow. Also pyproj wheels are needed for dependency geopandas."
186186
)
187187

188188
install_extras = True

packages/google-cloud-documentai-toolbox/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def unit(session, protobuf_implementation):
191191
# Install all test dependencies, then install this package in-place.
192192
if session.python == "3.15":
193193
session.skip(
194-
"Skipping 3.15 until wheels are available for numba (from pandas) and lxml (from pikepdf)"
194+
"Skipping 3.15 until wheels are available for 1. numba (from dependency pandas[performance]) 2. lxml (from dependency pikepdf) 3. pyarrow."
195195
)
196196

197197
constraints_path = str(

packages/pandas-gbq/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def unit(session):
245245
"""Run the unit test suite."""
246246
if session.python == "3.15":
247247
session.skip(
248-
"Skipping 3.15 until wheels are available for pyproj needed for dependency geopandas"
248+
"Skipping 3.15 until wheels are available for pyarrow. Also pyproj wheels are needed for dependency geopandas."
249249
)
250250

251251
default(session)

0 commit comments

Comments
 (0)