Skip to content

Commit

Permalink
Add windows socket test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala committed Jun 12, 2024
1 parent 7a58943 commit 1d66438
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3

- name: 'Dependency Review'
uses: actions/dependency-review-action@v1
uses: actions/dependency-review-action@v4
with:
# verify=False is never used in HSDS
allow-ghsas: ["GHSA-9wx4-h78v-vm56"]
allow-ghsas: GHSA-9wx4-h78v-vm56
11 changes: 6 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,13 +186,14 @@ jobs:
HDF5_VOL_CONNECTOR: REST
ROOT_DIR: ${{github.workspace}}/hsdsdata
BUCKET_NAME: hsdstest

name: Test HSDS with socket
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.12"]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -213,9 +214,9 @@ jobs:
pip install -e .
# Requests 2.32.0 breaks requests-unixsocket, used by HSDS for socket connections
- name: Fix requests version
run: |
pip install requests==2.31.0
# - name: Fix requests version
# run: |
# pip install requests==2.31.0

- name: Run HSDS unit tests
shell: bash
Expand Down

0 comments on commit 1d66438

Please sign in to comment.