Files
lightgbm-org--lightgbm/tests/python_package_test/conftest.py
T
2026-07-13 13:27:18 +08:00

13 lines
215 B
Python

import numpy as np
import pytest
@pytest.fixture(scope="function")
def rng():
return np.random.default_rng()
@pytest.fixture(scope="function")
def rng_fixed_seed():
return np.random.default_rng(seed=42)