Skip to content

Commit

Permalink
fix: use absolute path of package (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-liang3 authored Jan 15, 2025
1 parent f71c508 commit ef447e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ."
Expand Down

0 comments on commit ef447e8

Please sign in to comment.