Skip to content

Commit b478284

Browse files
committed
temporarily filter out geopandas to avoid failing a different reason for failing test redux
1 parent 3266732 commit b478284

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

noxfile.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,11 @@ 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+
elif install_extras: # run against all other UNIT_TEST_PYTHON_VERSIONS
114115
install_target = (
115116
".[bqstorage,pandas,ipywidgets,matplotlib,tqdm,opentelemetry,bigquery_v2]"
116117
)
117-
elif install_extras: # run against all other UNIT_TEST_PYTHON_VERSIONS
118-
install_target = ".[all]"
119118
else:
120119
install_target = "."
121120
session.install("-e", install_target, "-c", constraints_path)

0 commit comments

Comments
 (0)