From 900f54f3f273dda92ac22a594f32ac6b1edc3986 Mon Sep 17 00:00:00 2001 From: Alex Liang Date: Tue, 14 Jan 2025 11:20:02 +0000 Subject: [PATCH] fix: use absolute path of package --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 14efb6f..748b4c1 100644 --- a/Makefile +++ b/Makefile @@ -552,7 +552,7 @@ ci-test-python: ## Run Python unit tests. Assumes the dev image has already been --volume="/app/build" \ --workdir=/app/build \ $(docker_development_image_repository):$(docker_image_version) \ - /bin/bash -c "python${test_python_version} -m pip install --root-user-action=ignore --target=${test_python_directory} --find-links packages/python open_space_toolkit_${project_name} \ + /bin/bash -c "python${test_python_version} -m pip install --root-user-action=ignore --target=${test_python_directory} --find-links /app/packages/python open_space_toolkit_${project_name} \ && python${test_python_version} -m pip install --root-user-action=ignore --target=${test_python_directory} plotly pandas \ && cd ${test_python_directory}/ostk/$(project_name)/ \ && python${test_python_version} -m pytest -sv ."