Skip to content

Commit

Permalink
Disable h5pyd + windows tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala committed Mar 27, 2024
1 parent 60e54a5 commit 950acd2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,20 +72,20 @@ jobs:
pytest tests/integ
- name: Checkout h5pyd
if: ${{matrix.test-other == 'h5pyd'}}
if: ${{ ( matrix.test-other == 'h5pyd' ) && ( matrix.os != 'windows-latest' ) }}
uses: actions/checkout@v4
with:
repository: HDFGroup/h5pyd
path: ${{github.workspace}}/h5pyd

- name: Install h5pyd
if: ${{matrix.test-other == 'h5pyd'}}
if: ${{ ( matrix.test-other == 'h5pyd' ) && ( matrix.os != 'windows-latest' ) }}
working-directory: ${{github.workspace}}/h5pyd
run: |
pip install . -v
- name: Create h5pyd test folder
if: ${{matrix.test-other == 'h5pyd'}}
if: ${{ ( matrix.test-other == 'h5pyd' ) && ( matrix.os != 'windows-latest' ) }}
working-directory: ${{github.workspace}}/h5pyd
env:
HS_USERNAME: test_user1
Expand All @@ -98,7 +98,7 @@ jobs:
hstouch -e http://127.0.0.1:5101 /home/test_user1/h5pyd_tests/
- name: Run h5pyd tests
if: ${{matrix.test-other == 'h5pyd'}}
if: ${{ ( matrix.test-other == 'h5pyd' ) && ( matrix.os != 'windows-latest' ) }}
working-directory: ${{github.workspace}}/h5pyd
env:
HS_USERNAME: test_user1
Expand Down

0 comments on commit 950acd2

Please sign in to comment.