mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-26 06:39:57 +00:00
18 lines
425 B
YAML
18 lines
425 B
YAML
name: run-tests
|
|
|
|
description: "Install lance wheel and run unit tests"
|
|
inputs:
|
|
python-minor-version:
|
|
required: true
|
|
description: "8 9 10 11 12"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install lancedb
|
|
shell: bash
|
|
run: |
|
|
pip3 install $(ls target/wheels/lancedb-*.whl)[tests,dev]
|
|
- name: pytest
|
|
shell: bash
|
|
run: pytest -m "not slow" -x -v --durations=30 python/python/tests
|