summaryrefslogtreecommitdiff
path: root/pre-commit.sh
blob: 6b8e4bf3839beb6118f9de10023848628ea7ba97 (plain)
1
2
3
4
5
6
#!/bin/sh

mypy . || exit 1
pylint pom_parser/__init__.py || exit 1
which doxygen >/dev/null && { doxygen || exit 1; }
python -m unittest tests || exit 1