Skip to content

Commit 3266732

Browse files
committed
temporarily filter out geopandas to avoid failing a different reason for failing testJ
1 parent c402468 commit 3266732

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

noxfile.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,10 @@ def default(session, install_extras=True):
110110
# that logic (and the associated tests) we avoid installing the [ipython] extra
111111
# which has a downstream effect of then avoiding installing bigquery_magics.
112112
if install_extras and session.python == UNIT_TEST_PYTHON_VERSIONS[0]:
113-
install_target = ".[bqstorage,pandas,ipywidgets,geopandas,matplotlib,tqdm,opentelemetry,bigquery_v2]"
113+
# install_target = ".[bqstorage,pandas,ipywidgets,geopandas,matplotlib,tqdm,opentelemetry,bigquery_v2]"
114+
install_target = (
115+
".[bqstorage,pandas,ipywidgets,matplotlib,tqdm,opentelemetry,bigquery_v2]"
116+
)
114117
elif install_extras: # run against all other UNIT_TEST_PYTHON_VERSIONS
115118
install_target = ".[all]"
116119
else:

0 commit comments

Comments
 (0)