Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/bigframes/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,7 @@ def notebook(session: nox.Session):
"notebooks/generative_ai/sentiment_analysis.ipynb", # Too slow
"notebooks/generative_ai/bq_dataframes_llm_vector_search.ipynb", # Limited quota for vector index ddl statements on table.
"notebooks/generative_ai/bq_dataframes_ml_drug_name_generation.ipynb", # Needs CONNECTION.
"notebooks/generative_ai/ai_movie_poster.ipynb", # Needs CONNECTION.
# TODO(b/366290533): to protect BQML quota
"notebooks/vertex_sdk/sdk2_bigframes_pytorch.ipynb", # Needs BUCKET_URI.
"notebooks/vertex_sdk/sdk2_bigframes_sklearn.ipynb", # Needs BUCKET_URI.
Expand All @@ -725,6 +726,8 @@ def notebook(session: nox.Session):
# This anywidget notebook uses deferred execution, so it won't
# produce metrics for the performance benchmark script.
"notebooks/dataframes/anywidget_mode.ipynb",
# Needs a connection
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For consistency with other entries in this file (e.g., lines 711-712), please use the standard # Needs CONNECTION. comment format. This also correctly references the BigQuery 'CONNECTION' resource type.

Suggested change
# Needs a connection
# Needs CONNECTION.

"notebooks/remote_functions/remote_function_vertex_claude_model.ipynb",
]

# Convert each Path notebook object to a string using a list comprehension,
Expand Down
Loading