Skip to content

Commit 6e2b0ec

Browse files
committed
set the library path for the venv's Python to find the DLL
1 parent ff20afd commit 6e2b0ec

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/build_and_test_tidesdb.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,10 @@ jobs:
176176
shell: msys2 {0}
177177
run: |
178178
export PATH="/mingw64/bin:$PATH"
179+
export LD_LIBRARY_PATH="/mingw64/lib:$LD_LIBRARY_PATH"
179180
cd tidesdb-python
180181
python -m venv venv
181182
source venv/bin/activate
182183
pip install pytest pytest-cov
183184
pip install -e .
184-
pytest -v
185+
pytest -v --no-cov

0 commit comments

Comments
 (0)