Skip to content

Commit af31a76

Browse files
committed
WIP checking if unittest2 is actually needed
1 parent 3173815 commit af31a76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_pytest/nose.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
def get_skip_exceptions():
1212
skip_classes = set()
13-
for module_name in ("unittest", "unittest2", "nose"):
13+
for module_name in ("unittest", "nose"):
1414
mod = sys.modules.get(module_name)
1515
if hasattr(mod, "SkipTest"):
1616
skip_classes.add(mod.SkipTest)

0 commit comments

Comments
 (0)