[pyspark] support a list of feature column names (#8117)

This commit is contained in:
Bobby Wang
2022-08-08 17:05:27 +08:00
committed by GitHub
parent bcc8679a05
commit 03cc3b359c
11 changed files with 366 additions and 171 deletions

View File

@@ -61,8 +61,8 @@ def pytest_collection_modifyitems(config, items):
mgpu_mark = pytest.mark.mgpu
for item in items:
if item.nodeid.startswith(
"python-gpu/test_gpu_with_dask.py"
"python-gpu/test_gpu_with_dask/test_gpu_with_dask.py"
) or item.nodeid.startswith(
"python-gpu/test_spark_with_gpu/test_spark_with_gpu.py"
"python-gpu/test_gpu_spark/test_gpu_spark.py"
):
item.add_marker(mgpu_mark)