We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe28d81 commit 505c809Copy full SHA for 505c809
tests/python/test_lightgbm_integration.py
@@ -121,6 +121,7 @@ def test_categorical_data(self):
121
use_quantize=use_quantize,
122
use_parallel_comp=use_parallel_comp)
123
124
+ @pytest.mark.skipif(os_platform() == 'windows', reason='MSVC cannot handle long if conditional')
125
def test_sparse_categorical_model(self):
126
"""
127
LightGBM is able to produce categorical splits directly, so that
@@ -148,4 +149,4 @@ def test_sparse_categorical_model(self):
148
149
multiclass=multiclass, use_annotation=None,
150
151
use_parallel_comp=use_parallel_comp,
- use_toolchains=['msvc' if os_platform() == 'windows' else 'gcc'])
152
+ use_toolchains=['gcc'])
0 commit comments