Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] [dask] test lightgbm.dask on macOS #6677

Merged
merged 8 commits into from
Mar 2, 2025
Prev Previous commit
Next Next commit
fix windows condition
  • Loading branch information
jameslamb committed Oct 18, 2024
commit a494f891a2b7909968f95d19f213c0fb402f8a78
2 changes: 1 addition & 1 deletion tests/python_package_test/test_dask.py
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@

from .utils import sklearn_multiclass_custom_objective

if platform in {"cygwin", "win3"}:
if platform in {"cygwin", "win32"}:
pytest.skip("lightgbm.dask is not currently supported on Windows", allow_module_level=True)
if not lgb.compat.DASK_INSTALLED:
pytest.skip("Dask is not installed", allow_module_level=True)
Loading
Oops, something went wrong.