Skip to content

Commit

Permalink
Merge pull request #32 from andreped/wheel-install-fix
Browse files Browse the repository at this point in the history
Simplified whl install in tests CI
  • Loading branch information
andreped committed Aug 21, 2023
2 parents 57cadba + e6a1525 commit 6430745
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,8 @@ jobs:
name: "Python wheel"

- name: Install wheel
if: runner.os == 'Windows'
run: |
$TARGET = Resolve-Path "${{github.workspace}}/livermask-*.whl" | Select -ExpandProperty Path
echo $TARGET
pip install --find-links=${{github.workspace}} $TARGET
- name: Install wheel
if: runner.os != 'Windows'
run: pip install --find-links=${{github.workspace}} livermask-*.whl
run: pip install --find-links=. livermask-*
shell: bash

- name: Test CLI
run: livermask --help
Expand Down

0 comments on commit 6430745

Please sign in to comment.