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
If I try to skip some tests via unittest.skip decorator the test suite fails instead of marking it as skipped:
@unittest.skip("Not implemented")deftest_login(self):
"""Check if the server permits logins."""pass
$ fl-run-test test_geogrep.py MyTest.test_login F
======================================================================
FAIL: test_login (test_geogrep.Geogrep)
Check if the server permits logins.
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/funkload/FunkLoadTestCase.py", line 946, in __call__
testMethod()
File "/usr/lib/python2.7/unittest/case.py", line 62, in skip_wrapper
raise SkipTest(reason)
SkipTest: Not implemented
----------------------------------------------------------------------
Ran 1 test in 0.001s
FAILED (failures=1)
(the same output if I don't specify the test to run)
The text was updated successfully, but these errors were encountered:
If I try to skip some tests via
unittest.skip
decorator the test suite fails instead of marking it as skipped:(the same output if I don't specify the test to run)
The text was updated successfully, but these errors were encountered: