platypush/.drone/run-tests.sh

7 lines
201 B
Bash
Raw Normal View History

#!/bin/sh
apk add --update --no-cache $(cat platypush/install/requirements/alpine.txt)
pip install . --break-system-packages
pip install -r requirements-tests.txt --break-system-packages
pytest tests