From 950acd2bbfd1f211f4a007e7b95c04b2af3216ec Mon Sep 17 00:00:00 2001 From: Matthew Larson Date: Wed, 27 Mar 2024 11:13:02 -0500 Subject: [PATCH] Disable h5pyd + windows tests for now --- .github/workflows/python-package.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 4d6715d3..6ad82214 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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 @@ -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