forked from platypush/platypush
Fabio Manganiello
7fa0dbda7b
A fully self-contained 1.5k LoC Drone file isn't very maintainable, and it makes it hard to reuse parts that are shared across multiple steps (like SSH and git configuration).
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
|