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
I think the docs should say that the alias unittest actually refers to unittest2
Depending on which testing library is installed on a users system - unittest or unittest2 the line should change
if the user has just unittest2 and the alias unitest refers to that, its okay
but if the user has unittest and unittest2 then the line should change to
from unittest2.case import SkipTest
what do you think sean?
The text was updated successfully, but these errors were encountered:
https://github.com/Saaspire/sharpy/blob/master/tests/product_tests.py#L5
from unittest.case import SkipTest
I think the docs should say that the alias unittest actually refers to unittest2
Depending on which testing library is installed on a users system - unittest or unittest2 the line should change
if the user has just unittest2 and the alias unitest refers to that, its okay
but if the user has unittest and unittest2 then the line should change to
from unittest2.case import SkipTest
what do you think sean?
The text was updated successfully, but these errors were encountered: