Skip to content

Commit 967a7a9

Browse files
committed
fixing make
1 parent be97143 commit 967a7a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clients/python/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ install-unit-test: _check_venv_active ## install packages for unit testing clien
112112
uv pip install -r $(CLIENTS_PYTHON_DIR)/requirements/unit-test.txt
113113

114114
.PHONY: install-e2e-test
115-
install-e2e-test: _check_venv_active ## install packages for e2e testing client
115+
install-e2e-test: _check_venv_active ## install packages for e2e testing client [e2e]
116116
uv pip install -r $(CLIENTS_PYTHON_DIR)/requirements/e2e-test.txt
117117

118118
.PHONY: install-doc

clients/python/test/e2e/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def osparc_dev_features_enabled() -> bool:
1717

1818
def repo_version() -> Version:
1919
subprocess.run(
20-
"make client/VERSION", cwd=_clients_python_dir.resolve(), shell=True
20+
"make VERSION", cwd=_clients_python_dir.resolve(), shell=True
2121
).check_returncode()
2222
version_file: Path = Path(_clients_python_dir / "VERSION")
2323
assert version_file.is_file()

0 commit comments

Comments
 (0)