Skip to content

Commit 4041620

Browse files
committed
add make target for installing local client for running e2e tests
1 parent 308dd7f commit 4041620

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

clients/python/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,10 @@ install-e2e-test: _check_venv_active guard-OSPARC_VERSION ## install packages fo
129129
$(eval version := $(shell bash $(CLIENTS_PYTHON_DIR)/test/e2e/ci/bash/osparc_version.bash $(OSPARC_VERSION)))
130130
uv pip install -r $(CLIENTS_PYTHON_DIR)/requirements/e2e-test.txt osparc-client==$(version) osparc==$(version)
131131

132+
.PHONY: install-e2e-test-local
133+
install-e2e-test-local: _check_venv_active python-client ## install packages for e2e testing with local (repo) client [e2e]
134+
pip install -r $(CLIENTS_PYTHON_DIR)/requirements/e2e-test.txt --editable artifacts/client --editable .
135+
132136
.PHONY: install-doc
133137
install-doc: _check_venv_active .install-dev-reqs ## install packages for generating documentation
134138
uv pip install -r $(CLIENTS_PYTHON_DIR)/requirements/doc.txt

0 commit comments

Comments
 (0)