-
Notifications
You must be signed in to change notification settings - Fork 117
[feat] Remove support for the very old test syntax using _get_checks()
#876
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
Also move all tests under the same directory.
_get_checks()_get_checks()
- Files were not staged in the previous commit
... and ignore it.
|
Hello @vkarak, Thank you for updating! Cheers! There are no PEP8 issues in this Pull Request!Do see the ReFrame Coding Style Guide Comment last updated at 2019-07-19 15:09:57 UTC |
|
@victorusu @teojgo This PR is a requirement for the stuff I'm doing with the delayed initialization of tests. |
_get_checks()_get_checks()
|
I am converting it to wip, because I still need to remove the ability to pass arguments to the |
- Also do not require subclasses to call `super().__init__()` for initializing properly themselves.
_get_checks()_get_checks()
|
With this PR it will no more be necessary to call |
|
@vkarak yes change them and remove |
- Update tutorial examples - Update documentation
Codecov Report
@@ Coverage Diff @@
## master #876 +/- ##
==========================================
+ Coverage 91.66% 91.69% +0.02%
==========================================
Files 80 78 -2
Lines 10318 10282 -36
==========================================
- Hits 9458 9428 -30
+ Misses 860 854 -6
Continue to review full report at Codecov.
|
I have also adapted the OpenFOAM tests to the new syntax, since they were the only ones remaining to be ported. @kraushm Can you have a look into them?
This PR renders unnecessary the call to
super().__init__()inside the user test's constructor.