13 lines
144 B
Python
13 lines
144 B
Python
"""
|
|
|
|
Test fixtures
|
|
|
|
"""
|
|
|
|
# ruff: noqa: ARG001
|
|
from typing import Any
|
|
import numpy
|
|
|
|
|
|
FixtureRequest = Any
|
|
PRNG = numpy.random.RandomState(12345)
|