This repository has been archived on 2021-03-28. You can view files and clone it, but cannot push or open issues/pull-requests.
2020-08-28 13:15:08 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# This hooks runs tests and checks if the linter doesn't hate you
|
|
|
|
|
|
|
|
# Linting
|
2020-09-01 09:17:09 +02:00
|
|
|
printf "black......"
|
|
|
|
make format > /dev/null 2>&1 && printf "OK!\n" || { printf "Fail." && exit 1; }
|
2020-08-28 13:15:08 +02:00
|
|
|
|
|
|
|
# Running tests
|
|
|
|
printf "pytest....."
|
|
|
|
make test > /dev/null 2>&1 && printf "OK!\n" || { printf "Fail." && exit 1; }
|