We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bdc3c7 commit a50fcfdCopy full SHA for a50fcfd
noxfile.py
@@ -186,7 +186,11 @@ def snippets(session):
186
session.install("google-cloud-storage", "-c", constraints_path)
187
session.install("grpcio", "-c", constraints_path)
188
189
- session.install("-e", ".[all]", "-c", constraints_path)
+ if session.python == "3.10":
190
+ extras = "[bqstorage,pandas,tqdm,opentelemetry]"
191
+ else:
192
+ extras = "[all]"
193
+ session.install("-e", f".{extras}", "-c", constraints_path)
194
195
# Run py.test against the snippets tests.
196
# Skip tests in samples/snippets, as those are run in a different session
0 commit comments