Skip to content

Commit

Permalink
Drop deprecation count to 32, since that is wat is reported currently
Browse files Browse the repository at this point in the history
  • Loading branch information
nickygerritsen committed Jul 30, 2024
1 parent 4f87cbd commit c01749d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitlab/unit-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if [ $CODECOVERAGE -eq 1 ]; then
CNT=$(sed -n '/Generating code coverage report/,$p' "$GITLABARTIFACTS"/phpunit.out | grep -v DoctrineTestBundle | grep -cv ^$)
FILE=deprecation.txt
sed -n '/Generating code coverage report/,$p' "$GITLABARTIFACTS"/phpunit.out > ${CI_PROJECT_DIR}/$FILE
if [ $CNT -le 80 ]; then
if [ $CNT -le 32 ]; then
STATE=success
else
STATE=failure
Expand Down

0 comments on commit c01749d

Please sign in to comment.