forked from platypush/platypush
6 lines
265 B
Bash
Executable file
6 lines
265 B
Bash
Executable file
#!/bin/sh
|
|
|
|
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
|