From b09b3f169386a80b7ac52fc4a494bd0fdf842d60 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Tue, 29 Oct 2024 14:16:08 +0100 Subject: [PATCH] test: Fix output path for notebook action Fix output path for jupyter notebook github action Fix #COG-462 --- .github/workflows/test_notebook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_notebook.yml b/.github/workflows/test_notebook.yml index 54bf28ab9..5e57ada02 100644 --- a/.github/workflows/test_notebook.yml +++ b/.github/workflows/test_notebook.yml @@ -57,5 +57,5 @@ jobs: poetry run jupyter nbconvert \ --to notebook \ --execute notebooks/cognee_demo.ipynb \ - --output notebooks/executed_notebook.ipynb \ + --output executed_notebook.ipynb \ --ExecutePreprocessor.timeout=1200 \ No newline at end of file