Skip to content

Commit fbf2636

Browse files
committed
Fix test workflow
1 parent e240c0b commit fbf2636

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,11 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
27-
# os: [ ubuntu-latest, macos-13, macos-14 ]
28-
os: [ ubuntu-latest, macos-14 ]
27+
os: [ ubuntu-latest, macos-13, macos-14 ]
2928
include:
30-
- ld_path: "/usr/local/lib"
29+
- ld_prefix: "/usr/local"
3130
- os: macos-14
32-
ld_path: "/opt/homebrew/lib"
31+
ld_prefix: "/opt/homebrew"
3332

3433
steps:
3534
- name: Checkout
@@ -98,6 +97,6 @@ jobs:
9897
9998
- name: Test PyMEOS with pytest
10099
run: |
101-
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${{ matrix.ld_path }}
102-
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:${{ matrix.ld_path }}
100+
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${{ matrix.ld_prefix }}/lib
101+
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:${{ matrix.ld_prefix }}/lib
103102
pytest

0 commit comments

Comments
 (0)