-
Notifications
You must be signed in to change notification settings - Fork 44
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
Skip lists: Remove implicit pytest.skip() in UT, migrate to pytest-select configurations #882
Comments
@vlad-penkin I may need some clarification.
|
From what I understand, the aim is replacing 'pytest.skip()' using deselect list. We have many platforms, platformA, platformB, platformC. for a single case that is coded as ...
if capability[0] < 9 and (ADTYPE == "float8e4nv" or BDTYPE == "float8e4nv"):
pytest.skip("Only test float8e4nv on devices with sm >= 90")
... This case could be SKIPPED(platformA), PASSED(platformB), FAILED(platfromC). SKIPPED(platformA), expected, so put it in to skiplist of platfromA. those cases will not be detected (saving time) So before change any code, we
|
As discussed with Vlad, close this one, and put the request into #1434 |
This ticket consists of two task groups:
PR for first task group is
The text was updated successfully, but these errors were encountered: