Skip to content

Commit

Permalink
Upload artifact wheel and run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dudoslav committed Oct 14, 2024
1 parent ea78ddf commit 84fc94d
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/ci_tiledb_from_source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,20 @@ jobs:
- name: Build TileDB-Py Wheel
env:
TILEDB_PATH: ${{ github.workspace }}/libtiledb
run: python -m pip install --verbose .[test]
# - name: Upload TileDB Py Wheel
run: |
python -m pip wheel -w dist --verbose .
python -m pip install tiledb-*.whl
- name: Upload TileDB Core Artifact
uses: actions/upload-artifact@v4
with:
name: tiledb-py
path: |
dist/tiledb-*.whl
- name: Run tests
run: |
PROJECT_CWD=$PWD
rm tiledb/__init__.py
cd /tmp
pytest -vv --showlocals $PROJECT_CWD

0 comments on commit 84fc94d

Please sign in to comment.