Skip to content

Commit

Permalink
Merge pull request #28 from rgomids/fix/pre-commit-adjust
Browse files Browse the repository at this point in the history
fix - removing phpdbg use in tests
  • Loading branch information
espositovitor authored Nov 7, 2024
2 parents 7d32bdd + 12e4545 commit 91dd1f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ops/contrib/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ then
fi

echo "Running Unit Tests..."
docker exec $container phpdbg -qrr vendor/bin/phpunit --configuration tests/config/phpunit-unit-cover.xml -d memory_limit=1024M
docker exec $container vendor/bin/phpunit --configuration tests/config/phpunit-unit.xml -d memory_limit=1024M

if [ $? != 0 ]
then
Expand All @@ -106,7 +106,7 @@ then
fi

echo "Running Feature Tests..."
docker exec $container phpdbg -qrr vendor/bin/phpunit --configuration tests/config/phpunit-feat-cover.xml -d memory_limit=1024M
docker exec $container vendor/bin/phpunit --configuration tests/config/phpunit-feat.xml -d memory_limit=1024M

if [ $? != 0 ]
then
Expand Down

0 comments on commit 91dd1f6

Please sign in to comment.