still fixing an old test lmao

This commit is contained in:
sneakers-the-rat 2024-04-22 20:01:55 -07:00
parent 3d1d029ab8
commit 7fe9c5711e
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ jobs:
test:
strategy:
matrix:
python-version: [3.11]
python-version: ["3.9", "3.11", "3.12"]
runs-on: ubuntu-latest

View file

@ -96,7 +96,7 @@ def test_ndarray_serialize():
# but when we just dump to a dict we don't coerce
mod_dict = mod.model_dump()
assert isinstance(mod_dict["large_array"], np.ndarray)
assert isinstance(mod_dict["array"], np.ndarray)
# def test_ndarray_proxy(tmp_output_dir_func):