- Notifications
You must be signed in to change notification settings - Fork302
Fix Pytest4.x compatibility error#420
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
According to pytest docs:```marks in pytest.mark.parametrizeRemoved in version 4.0.Applying marks to values of a pytest.mark.parametrize call is now deprecated....This was considered hard to read and understand, and also its implementationpresented problems to the code preventing further internal improvements in themarks architecture.To update the code, use pytest.param```Signed-off-by: Stanislav Levin <slev@altlinux.org>
1a66508 to7be0c84Comparecodecov-io commentedMay 30, 2019 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Codecov Report
@@ Coverage Diff @@## master #420 +/- ##======================================= Coverage 90.79% 90.79% ======================================= Files 50 50 Lines 6952 6952 Branches 1328 1328 ======================================= Hits 6312 6312 Misses 481 481 Partials 159 159
Continue to review full report at Codecov.
|
marv commentedJan 26, 2020
What's the status of this? Would be great to have a release that's compatible with |
This comment has been minimized.
This comment has been minimized.
gsnedders commentedFeb 26, 2020
gsnedders commentedFeb 26, 2020
Oh, wait,#429 is a superset of this. |
According to pytest docs: