forked from platypush/platypush
Fabio Manganiello
197e1e91dd
The testing repo is only required by `py3-marshmallow`, which is not yet included in the community repo, but it can end up breaking some builds because of the incompatibility with the packages in the base repo.
6 lines
201 B
Bash
Executable file
6 lines
201 B
Bash
Executable file
#!/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
|