Skip to content

Commit 472351e

Browse files
committed
Modify installation in CI to be editable before running tests
1 parent c282a33 commit 472351e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/ci_pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
cache: "pip"
3131

3232
- name: Install package
33-
run: python -m pip install .[dev,test]
33+
run: python -m pip install -e .[dev,test]
3434

3535
- name: Install some testing dependencies (hard-coded)
3636
run: python -m pip install pytest devtools jsonschema requests wget pooch

tests/conftest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ def zenodo_zarr(testdata_path: Path) -> list[str]:
5353
f"{file_name}.zip", processor=pooch.Unzip(extract_dir=file_name)
5454
)
5555
zarr_full_path = file_paths[0].split(file_name)[0] + file_name
56-
print(zarr_full_path)
5756
folder = folders[ind]
5857

5958
# 2) Copy the downloaded Zarr into tests/data

0 commit comments

Comments
 (0)