Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding tutorials to notebook checks #1747

Merged
merged 33 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
488b669
wip
isahers1 Sep 17, 2024
02503aa
actually catch errors
isahers1 Sep 17, 2024
4e33d09
fixing tool-calling-errors and persistence-redis
isahers1 Sep 17, 2024
3a0156c
poetry changes
isahers1 Sep 17, 2024
a11ccae
poetry update
isahers1 Sep 17, 2024
a0e6c7a
run tutorials
isahers1 Sep 17, 2024
5576dc5
only tutorials (testing)
isahers1 Sep 17, 2024
cda76d6
print errors
isahers1 Sep 17, 2024
c4b9a9e
rewoo fixes
isahers1 Sep 19, 2024
bc25530
remove customer support because of user input
isahers1 Sep 19, 2024
9f04b12
skip notebooks programatically
isahers1 Sep 19, 2024
768450f
add back how-tos
isahers1 Sep 19, 2024
ec5ec31
Merge branch 'main' into isaac/runtutorialnotebooks
isahers1 Sep 19, 2024
22fa527
remove redundant if
isahers1 Sep 19, 2024
292d2a6
add cassetes for tutorials
isahers1 Sep 19, 2024
e2d28f7
remove no execution since it is generated by CI,
isahers1 Sep 19, 2024
021baa4
remove multi-agent/usaco
isahers1 Sep 19, 2024
786856b
try to run in parallel
isahers1 Sep 19, 2024
5e65fec
skip notebooks fix
isahers1 Sep 19, 2024
ac2f407
remove magic/non-magic cells
isahers1 Sep 19, 2024
e63e9aa
msgpack instead of yaml
isahers1 Sep 19, 2024
1e7fc62
prepare_notebooks change
isahers1 Sep 19, 2024
704fd41
ignore msgpack for spelling
isahers1 Sep 20, 2024
8d54240
Merge branch 'main' into isaac/runtutorialnotebooks
isahers1 Sep 20, 2024
9ca2f6c
use compression for cassettes
isahers1 Sep 20, 2024
2d6d1f8
update spell check
isahers1 Sep 20, 2024
9281f9e
Merge branch 'main' into isaac/runtutorialnotebooks
isahers1 Sep 20, 2024
20073b7
Merge branch 'main' into isaac/runtutorialnotebooks
isahers1 Sep 20, 2024
f5ff2d5
reset poetry changes
isahers1 Sep 20, 2024
9cbf232
Merge branch 'main' into isaac/runtutorialnotebooks
isahers1 Sep 20, 2024
14ab470
upgrade packages for latest
isahers1 Sep 20, 2024
24d4cd0
no update
isahers1 Sep 20, 2024
9d05549
poetry changes
isahers1 Sep 20, 2024
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
2 changes: 1 addition & 1 deletion docs/_scripts/execute_notebooks.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
for file in $(find docs/docs/how-tos -name "*.ipynb" | grep -v ".ipynb_checkpoints")
for file in $(find docs/docs/how-tos docs/docs/tutorials -name "*.ipynb" | grep -v ".ipynb_checkpoints")
do
echo "Executing $file"
poetry run jupyter execute "$file"
Expand Down
2 changes: 1 addition & 1 deletion docs/_scripts/prepare_notebooks_for_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import nbformat

logger = logging.getLogger(__name__)
NOTEBOOK_DIRS = ("docs/docs/how-tos",)
NOTEBOOK_DIRS = ("docs/docs/how-tos","docs/docs/tutorials")
DOCS_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
CASSETTES_PATH = os.path.join(DOCS_PATH, "cassettes")

Expand Down
Loading