Skip to content

Commit 7b6027d

Browse files
committed
cleanup makefile
1 parent be47d2a commit 7b6027d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

packages/models-library/Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,14 +110,15 @@ erd-ServiceInput.svg: _erdantic
110110
DOWNLOADED_TEST_DATA_DIR = "$(CURDIR)/tests/data/.downloaded-ignore"
111111

112112
.PHONY: _httpx
113-
_httpx: _check_venv_active
113+
_ensure_httpx: _check_venv_active
114114
# ensures requirements installed
115115
@python3 -c "import httpx" 2>/dev/null || uv pip install httpx
116116

117-
PHONY: pull_test_data
118-
pull_test_data: $(DOT_ENV_FILE) _httpx ## downloads tests data from registry (this can take some time!)
119-
# downloading all metadata files
117+
PHONY: tests-data
118+
tests-data: $(DOT_ENV_FILE) _ensure_httpx ## downloads tests data from registry defined in .env (time-intensive!)
119+
# Downloading all metadata files ...
120120
@set -o allexport; \
121121
source $<; \
122122
set +o allexport; \
123123
python3 "$(PACKAGES_DIR)/pytest-simcore/src/pytest_simcore/helpers/docker_registry.py" $(DOWNLOADED_TEST_DATA_DIR)
124+
@echo "Run now 'pytest -vv -m diagnostics tests'"

0 commit comments

Comments
 (0)