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,10 +1,13 @@
import os
import subprocess
import pytest
import testing as tm
import sys
pytestmark = pytest.mark.timeout(30)
import pytest
import testing as tm
from xgboost import testing
pytestmark = testing.timeout(30)
ROOT_DIR = tm.PROJECT_ROOT
DEMO_DIR = os.path.join(ROOT_DIR, 'demo')