From 7fe9c5711ef0a1d8d818d96d49df86cdbcb134ae Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Mon, 22 Apr 2024 20:01:55 -0700 Subject: [PATCH] still fixing an old test lmao --- .github/workflows/tests.yml | 2 +- tests/test_ndarray.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a0073d0..3b712f1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ jobs: test: strategy: matrix: - python-version: [3.11] + python-version: ["3.9", "3.11", "3.12"] runs-on: ubuntu-latest diff --git a/tests/test_ndarray.py b/tests/test_ndarray.py index b8697ed..0305371 100644 --- a/tests/test_ndarray.py +++ b/tests/test_ndarray.py @@ -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):