i3pystatus/ci-build.sh
enkore e2a0097316 Decrease chattiness of ci-build.sh; error reporting is not reduced
(but error visibility increased, because there is less output overall)
2016-02-08 10:10:28 +01:00

26 lines
801 B
Bash
Executable File

#!/bin/bash -xe
python3 --version
py.test --version
python3 -mpep8 --version
# Target directory for all build files
BUILD=${1:-ci-build}
rm -rf ${BUILD}/
mkdir -p $BUILD
python3 -mpep8 --ignore E501 i3pystatus tests
# Check that the setup.py script works
rm -rf ${BUILD}/test-install ${BUILD}/test-install-bin
mkdir ${BUILD}/test-install ${BUILD}/test-install-bin
PYTHONPATH=${BUILD}/test-install python3 setup.py --quiet install --install-lib ${BUILD}/test-install --install-scripts ${BUILD}/test-install-bin
test -f ${BUILD}/test-install-bin/i3pystatus
test -f ${BUILD}/test-install-bin/i3pystatus-setting-util
PYTHONPATH=${BUILD}/test-install py.test -q --junitxml ${BUILD}/testlog.xml tests
# Check that the docs build w/o warnings (-W flag)
sphinx-build -Nq -b html -W docs ${BUILD}/docs/