fr/fr_env/lib/python3.8/site-packages/sklearn/utils/tests/conftest.py

11 lines
207 B
Python
Raw Normal View History

2021-03-02 18:34:59 +05:30
import pytest
import sklearn
@pytest.fixture
def print_changed_only_false():
sklearn.set_config(print_changed_only=False)
yield
sklearn.set_config(print_changed_only=True) # reset to default