[tests] Add machine-generated test suite

This commit is contained in:
Jan Petykiewicz 2026-02-15 01:41:31 -08:00
commit 1de76bff47
24 changed files with 1703 additions and 0 deletions

16
masque/test/conftest.py Normal file
View file

@ -0,0 +1,16 @@
"""
Test fixtures
"""
# ruff: noqa: ARG001
from typing import Any
import numpy
from numpy.typing import NDArray
import pytest # type: ignore
FixtureRequest = Any
PRNG = numpy.random.RandomState(12345)