-
Notifications
You must be signed in to change notification settings - Fork 0
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
#279 Made the nodebook testing running on SaaS [run-notebook-tests] #281
Conversation
@@ -17,6 +20,7 @@ | |||
'zero_shot_classification.ipynb' | |||
] | |||
) | |||
@pytest.mark.skip(reason="The expected functionality is not yet implemented in the Transformers Extension") |
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 suggest using xfail
with a reason. This is usually the safest strategy for adding tests for unimplemented things. Additionally, once implemented, the failure of xfail
will indicate that the test should now be "enabled".
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.
With xfail
the test still runs, which I don't want because it takes a long time.
closes #279