diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index eadf521..2080283 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -22,7 +22,6 @@ jobs: with: fetch-depth: 0 submodules: recursive - lfs: true - name: Set up Python ${{ matrix.python_version }} uses: actions/setup-python@v4 with: diff --git a/tests/test_reader.py b/tests/test_reader.py index c3a46ad..1920a45 100644 --- a/tests/test_reader.py +++ b/tests/test_reader.py @@ -34,14 +34,14 @@ def test_eln_data(tmp_path): """Check if the subsections in the eln_data.yml file work.""" dir_path = Path(__file__).parent / "data" dataconverter.convert( - ( + input_file=( str(dir_path / "xarray_saved_small_calibration.h5"), str(dir_path / "config_file.json"), str(dir_path / "eln_data.yaml"), ), - "mpes", - "NXmpes", - os.path.join(tmp_path, "mpes.small_test.nxs"), - False, - False, + reader="mpes", + nxdl="NXmpes", + output=os.path.join(tmp_path, "mpes.small_test.nxs"), + skip_verify=False, + ignore_undocumented=False, )