Skip to content

Commit

Permalink
try to fix coverage again, it works on local env
Browse files Browse the repository at this point in the history
  • Loading branch information
TTianshun committed Dec 15, 2023
1 parent c813ee1 commit 72a2c47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ def test_pid_exists(self):


class TestUtilCmd(CmdlineTmpl):
@package_matrix(["~psutil", "psutil"])
@unittest.skipIf(sys.platform == "darwin", "get_subprocess_pid_recursive does not work on mac")
@package_matrix(["psutil", "~psutil"])
def test_get_subprocess_pid_recursive(self):
self.template(
cmd_list=[sys.executable, "cmdline_test.py"],
cmd_list=["python", "cmdline_test.py"],
script=test_get_subprocess_pid_recursive_script,
success=True,
expected_output_file=None,
Expand Down

0 comments on commit 72a2c47

Please sign in to comment.