Skip to content

Commit

Permalink
Travis more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Apr 17, 2013
1 parent f542e20 commit 9ed8635
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/travis-build
Expand Up @@ -14,7 +14,7 @@ echo ==========================================================
# Are we on a branch that we need to do full testing
MAJOR_BRANCH=`echo $TRAVIS_BRANCH | egrep release\|master`

if [ $MAJOR_BRANCH != '' ]
if [ "$MAJOR_BRANCH" = '' ]
then
# If commit message ends in ++ we will run all the tests
IS_PLUS=`echo $COMMIT | grep \+\+$`
Expand All @@ -23,11 +23,13 @@ then
# Don't test under python 2.6
if [ $TRAVIS_PYTHON_VERSION = '2.6' ]
then
echo No need to test this branch under python 2.6
exit 0
fi
# Don't test on Postgres 8.4
if [ $PGVERSION = '8.4' ]
then
echo No need to test this branch under postgres 8.4
exit 0
fi
fi
Expand Down

0 comments on commit 9ed8635

Please sign in to comment.