Skip to content

Commit

Permalink
Remove test_install_from_wheels
Browse files Browse the repository at this point in the history
This is already performed earlier in the workflow
  • Loading branch information
andreas-el committed Dec 11, 2023
1 parent 80164d5 commit ed8da1b
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/bundle_with_dakota_caller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,36 +115,3 @@ jobs:
password: ${{ secrets.PYPI_TOKEN }}
packages-dir: dist/
skip-existing: true

test_install_from_wheel_cache:
needs: [ publish_wheels ]
strategy:
fail-fast: true
matrix:
python-version: [ '3.8','3.9','3.10','3.11','3.12' ]
os: [ 'macos-12', 'macos-13', 'ubuntu-latest' ]

runs-on: ${{ matrix.os }}

steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install Carolina from cached wheel
run: |
pyver_nodot=$(echo ${{ matrix.python-version }} | sed 's/\.//g')
wheel_path=$(find dist -name "carolina*$pyver_nodot*whl")
echo "Found Carolina wheel at $wheel_path"
pip install $wheel_path
- name: Checkout Carolina
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Test Carolina
run: |
pip install pytest
python -m pytest ./tests

0 comments on commit ed8da1b

Please sign in to comment.