Skip to content

Commit 3d45606

Browse files
committed
sleep???
1 parent 2fff08f commit 3d45606

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

mypyc/test/test_run.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import re
88
import subprocess
99
import contextlib
10+
import time
1011
import shutil
1112
import sys
1213
from typing import Any, Iterator, List, cast
@@ -134,6 +135,9 @@ def run_case_inner(self, testcase: DataDrivenTestCase) -> None:
134135
steps = []
135136

136137
for operations in steps:
138+
if sys.platform.startswith('win'):
139+
time.sleep(1)
140+
137141
step += 1
138142
with chdir_manager('..'):
139143
for op in operations:

0 commit comments

Comments
 (0)