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