summaryrefslogtreecommitdiffstats
path: root/build-gluster-org/scripts/glusto-lint.sh
blob: 298c5a70e67447a40859fc3ce8955efe78f50e9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
set -e
source /opt/rh/python27/enable
virtualenv --system-site-packages env
env/bin/pip install tox
env/bin/tox

# Commit message standard
if ! git show --pretty=format:%B | head -n 2 | tail -n 1 | egrep '^$' >/dev/null 2>&1 ; then
    echo "Bad commit message format! Please add an empty line after the subject line. Do not break subject line with new-lines."
    exit 1
fi

# verify that every folder has an __init__.py file
set +e
FOLDERLIST=$(find tests/functional -type d -print0 | xargs -0 -I {} ls {}/__init__.py)
RET=$?
set -e
if [ $RET -ne 0 ]; then
    echo "One of the folders in this change does not have an __init__.py file"
    exit 1
fi