Disable pytest-timeout for now. (#8348)

This commit is contained in:
Jiaming Yuan
2022-10-17 23:06:10 +08:00
committed by GitHub
parent fcddbc9264
commit 2176e511fc
13 changed files with 107 additions and 58 deletions

View File

@@ -1,9 +1,11 @@
import testing as tm
import pytest
from hypothesis import strategies, given, settings, note
import xgboost as xgb
from hypothesis import given, note, settings, strategies
import xgboost as xgb
from xgboost import testing
pytestmark = testing.timeout(10)
pytestmark = pytest.mark.timeout(10)
parameter_strategy = strategies.fixed_dictionaries({
'booster': strategies.just('gblinear'),