-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Add GAE billing tests + fix region tags 10000 #2774
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
…dPlatform/python-docs-samples into gae-billing-tests-2772
Chatted offline with @kurtisvg - since GCF only supports Python 3.7, we can disable |
# Skip unsupported Python versions for Cloud Functions | ||
# (Some GCF samples' dependencies don't support them) | ||
if [[ "$file" == "functions/"* ]]; then | ||
PYTHON_VERSION="$(python --version 2>&1)" |
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.
FYI, this code is completely wrong.
This code checks the default Python version, rather than Python version in the nox session.
This resulted in disabling all the tests under functions directory. #3767 removed this code block then our tests started to fail.
Fixes #2772