1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
checktheroads-hyperglass/tests/ci_git_commit.sh
2019-06-18 15:07:00 -07:00

17 lines
274 B
Bash
Executable File

#!/bin/sh
commit_black() {
git add hyperglass/*.py
git commit --message "Black Formatting - travis $TRAVIS_BUILD_NUMBER"
}
commit_pylint() {
git add pylint.svg
git commit --message "Pylint Badge - travis $TRAVIS_BUILD_NUMBER"
}
commit_black
commit_pylint
exit 0