applied-ai-018's picture
Add files using upload-large-folder tool
f55eed3 verified
raw
history blame
267 Bytes
"""
Smoke Test the check_build module
"""
# Author: G Varoquaux
# License: BSD 3 clause
import pytest
from sklearn.__check_build import raise_build_error
def test_raise_build_error():
with pytest.raises(ImportError):
raise_build_error(ImportError())