Skip to content

Commit fd4f532

Browse files
lfs?
1 parent ef5d86f commit fd4f532

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/testing.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ jobs:
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 .

mpcontribs-lux/tests/projects/esoteric_ephemera/test_schemas.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Test schemas for user esoteric_ephemera."""
22

33
import gzip
4-
import orjson
4+
import json
55
from pathlib import Path
66

77
import 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

3232
def test_matpes_doc_from_task_doc(test_dir, task_doc):

0 commit comments

Comments
 (0)