forked from platypush/platypush
7 lines
201 B
Bash
7 lines
201 B
Bash
|
#!/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
|