Skip to content

Commit

Permalink
Remove extra libtiledbsoma.so
Browse files Browse the repository at this point in the history
  • Loading branch information
jdblischak committed Nov 28, 2023
1 parent 94d86d4 commit 4989b13
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -399,13 +399,16 @@ jobs:
pip list
- name: Install tiledbsoma-py
run: |
cd apis/python
python setup.py develop --single-version-externally-managed
python -m pip -v install -e apis/python
pip list
- name: Confirm linking
run: |
find apis/python -name '*.so'
find apis/python -name '*.so' | xargs ldd
- name: Remove extra libtiledbsoma.so
# Deleting this bundled libtiledbsoma.so to ensure the external
# shared object is being used in the tests
run: rm -f apis/python/src/tiledbsoma/libtiledbsoma.so
- name: Test tiledbsoma-py
run: |
python -c "import tiledbsoma; print('successful import')"
Expand Down

0 comments on commit 4989b13

Please sign in to comment.