Intelegentny_Pszczelarz/.venv/Lib/site-packages/sklearn/tests/test_check_build.py
2023-06-19 00:49:18 +02:00

16 lines
267 B
Python

"""
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())