Skip to content

Commit

Permalink
test: exclude geopandas from snippets-3.10 session (#1044)
Browse files Browse the repository at this point in the history
  • Loading branch information
tswast committed Nov 4, 2021
1 parent 20c9024 commit c3dbeeb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion noxfile.py
Expand Up @@ -186,7 +186,11 @@ def snippets(session):
session.install("google-cloud-storage", "-c", constraints_path)
session.install("grpcio", "-c", constraints_path)

session.install("-e", ".[all]", "-c", constraints_path)
if session.python == "3.10":
extras = "[bqstorage,pandas,tqdm,opentelemetry]"
else:
extras = "[all]"
session.install("-e", f".{extras}", "-c", constraints_path)

# Run py.test against the snippets tests.
# Skip tests in samples/snippets, as those are run in a different session
Expand Down

0 comments on commit c3dbeeb

Please sign in to comment.