Skip to content

Commit

Permalink
remove test from publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DirkEilander committed Jan 3, 2024
1 parent 78b6222 commit 4f1f9d6
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,22 +68,15 @@ jobs:
cache-dependency-path: pyproject.toml
python-version: '3.11'

- name: upgrade pip
run: pip install --upgrade pip

- name: Verify the built dist/wheel is valid
- name: Install wheel
run: |
pip install --upgrade pip
python -m pip install dist/hydromt_sfincs*.whl
python -c 'from hydromt_sfincs import __version__ as v; print(v)'
echo "$(hydromt --models)"
- name: pip list
run: pip list

# run test
- name: Test
- name: Verify the built wheel is valid
run: |
python -m pytest --verbose
python -c 'from hydromt_sfincs import __version__ as v; print(v)'
echo "$(hydromt --models)"
upload-to-test-pypi:
needs: test-built-dist
Expand Down

0 comments on commit 4f1f9d6

Please sign in to comment.