-
Notifications
You must be signed in to change notification settings - Fork 429
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
CI: Convert Python2 testing scripts to Python3 #10290
base: master
Are you sure you want to change the base?
Conversation
313e5ea
to
c32d4d4
Compare
c32d4d4
to
981074c
Compare
test/apps/test_fuzzy_match.py
Outdated
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.
Do we want to also fix the shebang to python3 and not be dependent on default python settings?
test/apps/test_ucx_tls.py
Outdated
if options.verbose: | ||
print "return code " + str(status) | ||
print output | ||
print("return code " + str(status)) |
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 f-string instead?
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.
Done
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.
python3?
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.
Sure, thanks!
d7ca501
to
409480d
Compare
8bca42e
to
06e3f08
Compare
What?
Convert Python2 testing scripts to Python3.
Why?
We missed the Python2 EOL date a bit (Jan 1, 2020).