Skip to content
Snippets Groups Projects
Commit ecb4eccf6917 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:ambulance: fix ignoring setting not null in tests for Odoo 13

parent b79256b2eefd
No related branches found
No related tags found
1 merge request!46Fix error not null odoo 13
......@@ -117,7 +117,7 @@
fi
criticals=$(grep ' CRITICAL' -F $logfile -c)
# exclude ALTER COLUMN xxx set not null that are not real errors
errors=$(grep ' ERROR' -F $logfile | grep -v "ALTER COLUMN \"\w*\" SET NOT NULL" -c)
errors=$(grep ' ERROR' -F $logfile | grep -v "(ALTER COLUMN \"\w*\" SET NOT NULL|unable to set NOT NULL on column)" -c)
warnings=$(grep ' WARNING' -F $logfile -c)
if [[ $criticals -gt 0 ]];
then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment