Skip to content

Commit

Permalink
try to fix win failures
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Dec 18, 2023
1 parent 404555a commit d9a8ac3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions psutil/tests/test_unicode.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def test_proc_exe(self):
# no such process (originated from GetExitCodeProcess !=
# STILL_ACTIVE)
if WINDOWS and CI_TESTING:
time.sleep(.1)
time.sleep(1)
p = psutil.Process(subp.pid)
exe = p.exe()
self.assertIsInstance(exe, str)
Expand All @@ -212,7 +212,7 @@ def test_proc_name(self):
# no such process (originated from GetExitCodeProcess !=
# STILL_ACTIVE)
if WINDOWS and CI_TESTING:
time.sleep(.1)
time.sleep(1)
name = psutil.Process(subp.pid).name()
self.assertIsInstance(name, str)
if self.expect_exact_path_match():
Expand Down

0 comments on commit d9a8ac3

Please sign in to comment.