docs: add postgres checkpointer example (#839)

This commit is contained in:
Vadym Barda
2024-06-26 21:43:58 -04:00
committed by GitHub
parent 1a58af81b3
commit ebad91e2e1
5 changed files with 933 additions and 41 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ jobs:
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 ]; then
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