Refine the unittest to support py38#27208
Merged
gfwm2013 merged 3 commits intoPaddlePaddle:developfrom Sep 17, 2020
Merged
Conversation
test=develop
|
Thanks for your contribution! |
test=develop
test=develop
zhhsplendid
approved these changes
Sep 15, 2020
Member
zhhsplendid
left a comment
There was a problem hiding this comment.
This PR LGTM but could you put more background on the PR description before merging?
From the code I think it is due to the difference of printed warning information, but could you state that in the PR description?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR types
Bug fixes
PR changes
Others
Describe
Refine the unittests to support py38
在单测的运行中,paddle除了会抛出预期的的warnings之外,还会抛出一些其他的warnings,所以在运行一些会检测warning个数或是warning内容的单测的时候,就会报错。为了修改这个问题,作出本PR的修改。
For example:
单测: test_device_guard
warnings :
在python3.8环境下运行test_device_guard这个单测,会得到上述7条warnings,但是其中只有2条(0 和 5)是我们所想要检测的。