Add python tests to the travis check

This commit is contained in:
skullY 2019-08-29 12:24:27 -07:00 committed by skullydazed
parent deb6fa6a87
commit 1013ae2d34
1 changed files with 9 additions and 1 deletions

View File

@ -51,6 +51,14 @@ if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip build]"* ]] ; then
fi
done
fi
# Check and run python tests if necessary
PFM=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -E '^(lib/python/)' | wc -l)
if [ $PFM -gt 0 -o "$BRANCH" = "master" ]; then
echo
echo "Running python tests."
bin/qmk nose2
: $((exit_code = $exit_code + $?))
fi
fi
exit $exit_code
fi