You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class GivenConfigurationFileExists(unittest.TestCase):
@unittest.skip('should be implemented in tcms-api')
def test_when_plugin_initializes_then_uses_config(self):
self.fail('not implemented')
while nose is able to discover and execute this (reporting 1 skipped test) nose-tap doesn't snow anything in the output. I was expecting to have an ok 1 <name> # SKIP: the message from decorator
Taking a quick look at the code, it might be related to addFailure in the plugin not calling add_skip on the tracker. I think when I wrote this that I thought skips would only come through the addError path. Perhaps it's missing a case.
I have the following:
while nose is able to discover and execute this (reporting 1 skipped test) nose-tap doesn't snow anything in the output. I was expecting to have an
ok 1 <name> # SKIP: the message from decorator
See:
kiwitcms/tap-plugin@1d26e94
and:
https://travis-ci.org/kiwitcms/tap-plugin/builds/484696806
The text was updated successfully, but these errors were encountered: