Skip to content

Commit

Permalink
[dask] Use an invalid port for test. (#8064)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivialfis committed Jul 13, 2022
1 parent 0bdaca2 commit 8959622
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/python/test_with_dask.py
@@ -1,6 +1,7 @@
"""Copyright 2019-2022 XGBoost contributors"""
from pathlib import Path
import pickle
import socket
import testing as tm
import pytest
import xgboost as xgb
Expand Down Expand Up @@ -1243,11 +1244,11 @@ def after_iteration(
os.remove(after_fname)

with dask.config.set({'xgboost.foo': "bar"}):
with pytest.raises(ValueError):
with pytest.raises(ValueError, match=r"Unknown configuration.*"):
xgb.dask.train(client, {}, dtrain, num_boost_round=4)

with dask.config.set({'xgboost.scheduler_address': "127.0.0.1:22"}):
with pytest.raises(PermissionError):
with dask.config.set({'xgboost.scheduler_address': "127.0.0.1:foo"}):
with pytest.raises(socket.gaierror, match=r".*not known.*"):
xgb.dask.train(client, {}, dtrain, num_boost_round=1)

def run_updater_test(
Expand Down

0 comments on commit 8959622

Please sign in to comment.