Skip to content

Commit

Permalink
Use locally built wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
nuwang committed Mar 24, 2024
1 parent a684be3 commit 6ac1638
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test_galaxy_package_integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,13 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: replace tpv galaxy dependencies with local package paths from galaxy source
- name: replace tpv galaxy dependencies with package paths from local galaxy build
run: |
sed -i'' -e '/^galaxy-/ s/-/_/g' -e 's|^galaxy_\(.*\)$|../packages/\1|' tpv/requirements_test.txt
# create local release
echo "c" | ./scripts/release.sh -l
# make requirements point to local wheels
sed -e '/^galaxy-/ s/-/_/g' -e 's|^galaxy_\(.*\)$|../packages/\1/build/\*.whl|' tpv/requirements_test.txt
cat tpv/requirements_test.txt
working-directory: 'tpv'
- name: Install required packages
run: pip install tox
- name: Run tox
Expand Down

0 comments on commit 6ac1638

Please sign in to comment.