test: Attempt to resolve newline issue

Attempt at resolving issue of github actions understanding run command

Test #COG-462
This commit is contained in:
Igor Ilic 2024-10-29 14:11:41 +01:00
parent 5b56eb5356
commit dbbe8e57e4

View file

@ -53,8 +53,9 @@ jobs:
LLM_API_KEY: ${{ secrets.OPENAI_API_KEY }}
GRAPHISTRY_USERNAME: ${{ secrets.GRAPHISTRY_USERNAME }}
GRAPHISTRY_PASSWORD: ${{ secrets.GRAPHISTRY_PASSWORD }}
run: poetry run jupyter nbconvert \
--to notebook \
--execute notebooks/cognee_demo.ipynb \
--output notebooks/executed_notebook.ipynb \
--ExecutePreprocessor.timeout=1200
run: |
poetry run jupyter nbconvert \
--to notebook \
--execute notebooks/cognee_demo.ipynb \
--output notebooks/executed_notebook.ipynb \
--ExecutePreprocessor.timeout=1200