Skip to content

Commit

Permalink
Fix windows install path
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Liu <[email protected]>
  • Loading branch information
austin362667 committed Oct 15, 2024
1 parent 91b8ffe commit fe3e810
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/pythonbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,8 @@ jobs:
- name: Install built wheel and Test with coverage
shell: bash
run: |
if [[ "$RUNNER_OS" == "Windows" ]]; then
out_dir="${{ github.workspace }}\\dist"
else
out_dir="${{ github.workspace }}/dist"
fi
uv pip install --system flyteidl-rust --no-index --find-links "$out_dir" --force-reinstall
uv pip freeze
pip install ./dist/*.whl --no-index --force-reinstall
pip freeze
python -c "import flyteidl_rust"
make unit_test_codecov
- name: Codecov
Expand Down

0 comments on commit fe3e810

Please sign in to comment.