Repository URL to install this package:
|
Version:
0.23.1 ▾
|
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