Disable match_model PR check because it's too dumb

We need to stop implementing this, but it should be defaulted to
just "return False" but we don't have a super good way to do that
really.
This commit is contained in:
Dan Smith 2023-11-24 11:01:50 -08:00 committed by Dan Smith
parent e21d78a8b2
commit 3c1ff5b16b

View File

@ -65,9 +65,9 @@ for file in $(git diff --name-only ${BASE}..); do
fi
done
if grep 'def match_model' added_lines; then
fail 'New drivers should not have match_model() implemented as it is not needed'
fi
#if grep 'def match_model' added_lines; then
# fail 'New drivers should not have match_model() implemented as it is not needed'
#fi
if git log ${BASE}.. --merges | grep .; then
fail Please do not include merge commits in your PR