File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
mpcontribs-lux/tests/projects/esoteric_ephemera Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 6868
6969 - name : Install lux and test with pytest
7070 run : |
71+ git lfs install
72+ git lfs pull
7173 cd mpcontribs-lux
7274 python${{ matrix.python-version }} -m pip install -r requirements/requirements-${{ matrix.os }}_py${{ matrix.python-version }}_extras.txt
7375 python${{ matrix.python-version }} -m pip install -e .
Original file line number Diff line number Diff line change 11"""Test schemas for user esoteric_ephemera."""
22
33import gzip
4- import orjson
4+ import json
55from pathlib import Path
66
77import numpy as np
@@ -26,7 +26,7 @@ def task_doc(test_data_dir) -> TaskDoc:
2626 opener = gzip .open if magic in {b"\x1f \x8b " , b"\037 \213 " } else open
2727
2828 with opener (fname , "rb" ) as f :
29- return TaskDoc (** orjson . loads ( f . read () ))
29+ return TaskDoc (** json . load ( f ))
3030
3131
3232def test_matpes_doc_from_task_doc (test_dir , task_doc ):
You can’t perform that action at this time.
0 commit comments