-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Labels
Description
Lines 45 to 47 in aad5400
| @pytest.fixture(scope="function", autouse=False) | |
| def seeded_test(): | |
| np.random.seed(20160911) |
It uses the legacy numpy RandomState API. Tests should be migrated to use the modern Generator API, which doesn't depend on global scope and isn't compatible with this sort of fixture