2024-05-23 00:17:55 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2024-11-11 23:45:44 +01:00
|
|
|
apk add --update --no-cache $(cat platypush/install/requirements/alpine.txt)
|
2024-05-23 00:17:55 +02:00
|
|
|
pip install . --break-system-packages
|
|
|
|
pip install -r requirements-tests.txt --break-system-packages
|
|
|
|
pytest tests
|