#!/bin/sh
set -efu

cd "$AUTOPKGTEST_TMP"

echo "Testing lap import and version..."
python3 -c "import lap; print('lap version:', lap.__version__)"

echo ""
echo "Running pytest test suite..."
python3 -m pytest -v --pyargs lap.tests
