Update OpenAI excluded notebooks from ecosystem checks (#12867)

## Summary

Follow-up to #12864, we don't need to exclude these notebooks anymore.

## Test plan

- [x] Make sure that ecosystem checks are green.
This commit is contained in:
Dhruv Manilawala 2024-08-14 08:03:25 +05:30 committed by GitHub
parent e05953a991
commit 89c8b49027
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -119,15 +119,12 @@ DEFAULT_TARGETS = [
check_options=CheckOptions(select=JUPYTER_NOTEBOOK_SELECT),
config_overrides={
"include": ["*.ipynb"],
# TODO(dhruvmanila): Re-enable after fixing the notebook.
# These notebooks contain syntax errors because certain plain text / markdown
# cells are marked as code cells.
"exclude": [
"examples/gpt_actions_library/.gpt_action_getting_started.ipynb",
"examples/gpt_actions_library/gpt_action_bigquery.ipynb",
"examples/chatgpt/gpt_actions_library/gpt_action_canvaslms.ipynb",
"examples/chatgpt/gpt_actions_library/.gpt_action_getting_started.ipynb",
"examples/chatgpt/gpt_actions_library/gpt_action_outlook.ipynb",
"examples/chatgpt/gpt_actions_library/gpt_action_salesforce.ipynb",
"examples/chatgpt/gpt_actions_library/gpt_action_bigquery.ipynb",
"examples/Chat_finetuning_data_prep.ipynb",
"examples/chatgpt/gpt_actions_library/gpt_action_google_drive.ipynb",
"examples/chatgpt/gpt_actions_library/gpt_action_redshift.ipynb",
],
},
),