File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : pep8 style check
1+ name : lint style check
22
33on :
44 push :
Original file line number Diff line number Diff line change @@ -40552,7 +40552,7 @@ def test_8888_drop_local_mirrors(self) -> None:
4055240552 logg.info("xml results into %s", opt.xmlresults)
4055340553 if not logfile:
4055440554 if xmlresults:
40555- import xmlrunner # type: ignore
40555+ import xmlrunner # type: ignore # pylint: disable=import-error
4055640556 Runner = xmlrunner.XMLTestRunner
4055740557 result = Runner(xmlresults).run(suite)
4055840558 else:
@@ -40561,7 +40561,7 @@ def test_8888_drop_local_mirrors(self) -> None:
4056140561 else:
4056240562 Runner = unittest.TextTestRunner
4056340563 if xmlresults:
40564- import xmlrunner
40564+ import xmlrunner # type: ignore # pylint: disable=import-error
4056540565 Runner = xmlrunner.XMLTestRunner
4056640566 result = Runner(logfile.stream, verbosity=opt.verbose).run(suite) # type: ignore
4056740567 if opt.coverage:
You can’t perform that action at this time.
0 commit comments