-
Notifications
You must be signed in to change notification settings - Fork 148
Upgrade node version in CI to 24 #2636
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
Conversation
return p | ||
except AssertionError: | ||
except AssertionError as ex: | ||
print(repr(ex)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe use a logger.error()
instead of printing to stdout?
.github/workflows/build_steps.yml
Outdated
python -m pip install --force-reinstall --retries 3 --timeout 500 -r $GITHUB_WORKSPACE/build_tooling/${{matrix.python_deps}} | ||
fi | ||
python -m pip uninstall -y pytest-cpp || true # No longer works on 3.6 | ||
# Downgrade to urllib3 1.23 to avoid breaking changes that affect azurite |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a leftover comment? Or we are somewhere explicitly downgrading?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah it was a leftover, removed
Reference Issues/PRs
What does this implement or fix?
-- This is fixed by upgrading the Node version and fixing how ports are provisioned for the Azurite sum
Any other comments?
Checklist
Checklist for code changes...