diff --git a/.hooks/pre-push b/.hooks/pre-push new file mode 100755 index 0000000000000000000000000000000000000000..fe53a78df0e24dd6f72c554cd24f74e2b09523c3 --- /dev/null +++ b/.hooks/pre-push @@ -0,0 +1,4 @@ +#!/bin/sh + +command -v pytest > /dev/null && pytest || echo "Did not found pytest pushing untestet" +exit 0