Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .evergreen/scripts/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ if ! command -v just &>/dev/null; then
echo "Installing just..."
mkdir -p "$_BIN_DIR" 2>/dev/null || true
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- $_TARGET --to "$_BIN_DIR" || {
# Remove just file if it exists (can be created if there was an install error).
rm -f ${_BIN_DIR}/just
_pip_install rust-just just
}
echo "Installing just... done."
Expand Down
1 change: 1 addition & 0 deletions test/asynchronous/test_srv_polling.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ def response_callback(*args):

await self.run_scenario(response_callback, False)

@flaky(reason="PYTHON-5500")
async def test_dns_failures_logging(self):
from dns import exception

Expand Down
1 change: 1 addition & 0 deletions test/test_srv_polling.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ def response_callback(*args):

self.run_scenario(response_callback, False)

@flaky(reason="PYTHON-5500")
def test_dns_failures_logging(self):
from dns import exception

Expand Down
Loading