Skip to content

Commit

Permalink
change test conditions based on build
Browse files Browse the repository at this point in the history
  • Loading branch information
dsikka committed Feb 20, 2024
1 parent 86649d1 commit 0fa070c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
filename: dist/*.whl
internal: $INTERNAL

pull_wheel:
pull_and_test:
needs: build_and_push
runs-on: ubuntu-latest
permissions:
Expand All @@ -70,4 +70,13 @@ jobs:
filename: ${{ needs.build_and_push.outputs.wheel }}
internal: $INTERNAL
dst: dist_s3
- name: Test Wheel
if: not $DEV
run:
pip install dist_s3/*.whl
make test TARGETS=full
if: $DEV
run:
pip install dist_s3/*.whl
make test

0 comments on commit 0fa070c

Please sign in to comment.