J.A. de Jong - Redu-Sone B.V., ASCEE V.O.F
a29f72a592
Some checks failed
continuous-integration/drone/push Build is failing
12 lines
292 B
Bash
Executable File
12 lines
292 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
apt update
|
|
apt install -y python3-venv libopenblas-dev python3-pip libusb-1.0-0-dev libpulse-dev python3-build
|
|
git submodule update --init --recursive
|
|
pyproject-build
|
|
python -m venv .venv
|
|
source .venv/bin/activate
|
|
pip install pytest
|
|
pip install dist/lasp-*linux_x86_64.whl
|
|
pytest
|