-
Notifications
You must be signed in to change notification settings - Fork 217
silence distutils deprecation warnings #4204
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
silence distutils deprecation warnings #4204
Conversation
8b12c17 to
11e69d9
Compare
11e69d9 to
ff49a60
Compare
6caecc1 to
a17d697
Compare
Skip the tests to avoid HTTP 429 error caused by rate limits
ad396e3 to
c7443f9
Compare
| python -O -m test.framework.suite 2>&1 | tee test_framework_suite.log | ||
| # try and make sure output of running tests is clean (no printed messages/warnings) | ||
| IGNORE_PATTERNS="no GitHub token available|skipping SvnRepository test|requires Lmod as modules tool|stty: 'standard input': Inappropriate ioctl for device|CryptographyDeprecationWarning: Python 3.[56]|from cryptography.*default_backend|CryptographyDeprecationWarning: Python 2|from cryptography.utils import int_from_bytes|Blowfish|GC3Pie not available, skipping test" | ||
| IGNORE_PATTERNS="no GitHub token available|skipping SvnRepository test|requires Lmod as modules tool|stty: 'standard input': Inappropriate ioctl for device|CryptographyDeprecationWarning: Python 3.[56]|from cryptography.* import |CryptographyDeprecationWarning: Python 2|Blowfish|GC3Pie not available, skipping test" |
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.
the "." in the "Python 3.[56]" should probably have a "" in front of it to be fully correct.
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.
I haven't touched that here.
…ramework into deprecation-warnings
akesandgren
left a comment
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.
LGTM
|
Going in, thanks @Flamefire! |
Currently CI fails due to deprecation warnings
Once due to a left-over use of
LooseVersionand 2ndStrictVersion.I resolved the latter with a wrapper class that suppresses the warning.
See #3963