Skip to content

Commit 0748a83

Browse files
committed
fix lint workflow
1 parent 339655b commit 0748a83

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/lintcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: pep8 style check
1+
name: lint style check
22

33
on:
44
push:

tests/testsuite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)