platypush/.drone/run-tests.sh

7 lines
265 B
Bash
Raw Normal View History

#!/bin/sh
2024-11-10 19:03:54 +01:00
apk add --update --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/ $(cat platypush/install/requirements/alpine.txt)
pip install . --break-system-packages
pip install -r requirements-tests.txt --break-system-packages
pytest tests