File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ if ! command -v just &>/dev/null; then
48
48
_TARGET=" --target x86_64-pc-windows-msvc"
49
49
fi
50
50
_BIN_DIR=$PYMONGO_BIN_DIR
51
+ mkdir -p ${_BIN_DIR}
51
52
echo " Installing just..."
52
53
mkdir -p " $_BIN_DIR " 2> /dev/null || true
53
54
curl --proto ' =https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- $_TARGET --to " $_BIN_DIR " || {
59
60
# Ensure uv is installed.
60
61
if ! command -v uv & > /dev/null; then
61
62
_BIN_DIR=$PYMONGO_BIN_DIR
63
+ mkdir -p ${_BIN_DIR}
62
64
echo " Installing uv..."
63
65
# On most systems we can install directly.
64
66
curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR=" $_BIN_DIR " INSTALLER_NO_MODIFY_PATH=1 sh || {
Original file line number Diff line number Diff line change @@ -429,7 +429,7 @@ async def find_one():
429
429
# maxConnecting = unbounded: 30+ connections in ~0.140+ seconds
430
430
print (len (pool .conns ))
431
431
432
- @flaky (reason = "PYTHON-5492" )
432
+ @flaky (reason = "PYTHON-5492" , affects_cpython_linux = True )
433
433
@async_client_context .require_failCommand_appName
434
434
async def test_csot_timeout_message (self ):
435
435
client = await self .async_rs_or_single_client (appName = "connectionTimeoutApp" )
Original file line number Diff line number Diff line change @@ -429,7 +429,7 @@ def find_one():
429
429
# maxConnecting = unbounded: 30+ connections in ~0.140+ seconds
430
430
print (len (pool .conns ))
431
431
432
- @flaky (reason = "PYTHON-5492" )
432
+ @flaky (reason = "PYTHON-5492" , affects_cpython_linux = True )
433
433
@client_context .require_failCommand_appName
434
434
def test_csot_timeout_message (self ):
435
435
client = self .rs_or_single_client (appName = "connectionTimeoutApp" )
You can’t perform that action at this time.
0 commit comments