Skip to content

Commit

Permalink
fixing e2e tests (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov authored Sep 16, 2024
1 parent be97143 commit 6b6c8fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clients/python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ install-unit-test: _check_venv_active ## install packages for unit testing clien
uv pip install -r $(CLIENTS_PYTHON_DIR)/requirements/unit-test.txt

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

.PHONY: install-doc
Expand Down
2 changes: 1 addition & 1 deletion clients/python/test/e2e/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def osparc_dev_features_enabled() -> bool:

def repo_version() -> Version:
subprocess.run(
"make client/VERSION", cwd=_clients_python_dir.resolve(), shell=True
"make VERSION", cwd=_clients_python_dir.resolve(), shell=True
).check_returncode()
version_file: Path = Path(_clients_python_dir / "VERSION")
assert version_file.is_file()
Expand Down

0 comments on commit 6b6c8fe

Please sign in to comment.