1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#!/usr/bin/env bash
set -euf -o pipefail
SELF_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd "$SELF_DIR/.."
source "$SELF_DIR/common.sh"
assertPython
echo
echo "===Settting up venv==="
enterVenv
echo
echo "===Installing poetry==="
pip install poetry
echo
echo "===Installing dependencies==="
poetry install
echo
echo "===Installing black==="
pip install black
echo
echo "===Formatting code==="
if [[ `which black` ]]; then
BLACK_ARGS=""
if [[ "${CI:-}" = "1" ]]; then
BLACK_ARGS="--check"
fi
black $BLACK_ARGS .
else
echo "Warning: Skipping code formatting. You should use python >= 3.6."
fi
echo
echo "===Lint with flake8==="
flake8
echo
echo "===Lint with pylint==="
pylint $LINT_PATHS
# Test require a roon core server install locally
# echo
# echo "===Test with pytest==="
# pytest
echo
echo "===Building package==="
poetry build
echo
echo "Build complete"
|