mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-09-07 02:07:52 +02:00
docs: add a how-to for streaming from final node (#832)
This commit is contained in:
@@ -64,13 +64,7 @@ jobs:
|
||||
echo "Changed files: ${CHANGED_FILES}"
|
||||
if [ -n "${CHANGED_FILES}" ]; then
|
||||
echo "Running link check on changed notebook files..."
|
||||
poetry run pytest -v --check-links-ignore "https://(api|web)\.smith\.langchain\.com/.*" --check-links-ignore "https://x.com/.*" --check-links ${CHANGED_FILES}
|
||||
PYTEST_EXIT_CODE=$?
|
||||
echo "pytest exit code: ${PYTEST_EXIT_CODE}"
|
||||
if [ "${PYTEST_EXIT_CODE}" -ne 0 ] && [ "${PYTEST_EXIT_CODE}" -ne 5 ]; then
|
||||
echo "pytest failed with exit code ${PYTEST_EXIT_CODE}"
|
||||
exit ${PYTEST_EXIT_CODE}
|
||||
fi
|
||||
poetry run pytest -v --check-links-ignore "https://(api|web)\.smith\.langchain\.com/.*" --check-links-ignore "https://x.com/.*" --check-links ${CHANGED_FILES} || ([ $? = 5 ] && exit 0 || exit $?)
|
||||
else
|
||||
echo "No notebook files changed."
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user