File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -253,6 +253,7 @@ PIP_QUIET=0 python -m pip list
253
253
if [ -z " $GREEN_FRAMEWORK " ]; then
254
254
# Use --capture=tee-sys so pytest prints test output inline:
255
255
# https://docs.pytest.org/en/stable/how-to/capture-stdout-stderr.html
256
+ TEST_ARGS=" $TEST_ARGS -k test_timeout_in_multi_batch_bulk_write"
256
257
if [ -z " $TEST_SUITES " ]; then
257
258
python -m pytest -v --capture=tee-sys --durations=5 --maxfail=10 $TEST_ARGS
258
259
else
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ def event_loop_policy():
18
18
# We explicitly use a different loop implementation here to prevent that issue
19
19
if sys .platform == "win32" :
20
20
# Needed for Python 3.8.
21
- asyncio .set_event_loop_policy (asyncio .WindowsSelectorEventLoopPolicy ())
21
+ # asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
22
22
return asyncio .WindowsSelectorEventLoopPolicy () # type: ignore[attr-defined]
23
23
24
24
return asyncio .get_event_loop_policy ()
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ def event_loop_policy():
16
16
# We explicitly use a different loop implementation here to prevent that issue
17
17
if sys .platform == "win32" :
18
18
# Needed for Python 3.8.
19
- asyncio .set_event_loop_policy (asyncio .WindowsSelectorEventLoopPolicy ())
19
+ # asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
20
20
return asyncio .WindowsSelectorEventLoopPolicy () # type: ignore[attr-defined]
21
21
22
22
return asyncio .get_event_loop_policy ()
You can’t perform that action at this time.
0 commit comments