I see these imports of unittest in
|
from unittest import SkipTest |
|
from unittest import SkipTest |
I generally think that test code should not be built into the business logic. Is there a reason why using a skipIf decorator is insufficient?
Reactions are currently unavailable
I see these imports of unittest in
GitPython/git/objects/submodule/base.py
Line 6 in a8591a0
GitPython/git/util.py
Line 17 in f3265bd
I generally think that test code should not be built into the business logic. Is there a reason why using a skipIf decorator is insufficient?