unittest.sh 732 字节
Newer Older
R
root 已提交
1 2 3 4 5
#!/bin/bash

abort(){
    echo "Run unittest failed" 1>&2
    echo "Please check your code" 1>&2
6 7
    echo "  1. you can run unit tests by 'bash .travis/unittest.sh' locally" 1>&2
    echo "  2. you can add python requirements in .travis/requirements.txt if you use new requirements in unit tests" 1>&2
R
root 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
    exit 1
}

unittest(){
    if [ $? != 0 ]; then
        exit 1
    fi
    find "./ppdet/modeling" -name 'tests' -type d -print0 | \
        xargs -0 -I{} -n1 bash -c \
        'python -m unittest discover -v -s {}'
}

trap 'abort' 0
set -e

23 24 25
# install travis python dependencies
if [ -f ".travis/requirements.txt" ]; then
    pip install -r .travis/requirements.txt
R
root 已提交
26
fi
27

R
root 已提交
28 29 30 31 32
export PYTHONPATH=`pwd`:$PYTHONPATH

unittest .

trap : 0