We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee485e2 commit 3ccee6bCopy full SHA for 3ccee6b
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})") # ty: ignore[invalid-argument-type, too-many-positional-arguments]
+ pytest.skip(f"could not run 'lsof' ({exc!r})")
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