We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4488ca commit e182ab1Copy full SHA for e182ab1
1 file changed
tests/test_capture.py
@@ -469,7 +469,7 @@ def lsof_check():
469
UnicodeDecodeError,
470
) as exc: # pragma: no cover
471
# about UnicodeDecodeError, see note on pytester
472
- pytest.skip(f"could not run 'lsof' ({exc!r})")
+ pytest.skip(f"could not run 'lsof' ({exc!r})") # ty: ignore[invalid-argument-type, too-many-positional-arguments]
473
yield
474
out2 = subprocess.check_output(("lsof", "-p", str(pid))).decode()
475
len1 = len([x for x in out.split("\n") if "REG" in x])
0 commit comments