Skip to content

Commit

Permalink
Merge pull request #121 from lion-packages/bugs
Browse files Browse the repository at this point in the history
A condition in RunTestCommand is corrected
  • Loading branch information
Sleon4 authored Feb 10, 2025
2 parents cac973a + a031ea4 commit eb51eda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
################################################################################
APP_NAME="lion-bundle"
SERVER_DATE_TIMEZONE="America/Bogota"
SERVER_URL="http://localhost:8000"
SERVER_URL_AUD="http://localhos:5173"
SERVER_URL="http://127.0.0.1:8000"
SERVER_URL_AUD="http://127.0.0.1:5173"
SERVER_HASH="a50a54cf0454196d493809d282984333a0bcbf0b3703785bd329250485dd8307"
################################################################################
################# DATABASE CONNECTIONS ----------------------- #################
Expand Down
2 changes: 1 addition & 1 deletion src/LionBundle/Commands/Lion/RunTestCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$commandString .= " --filter {$method}";
}

if (!empty($report) && 'none' != $report) {
if (!empty($report) && 'none' === $report) {
$commandString .= ' --coverage-clover tests/build/logs/clover.xml --coverage-html tests/build/coverage';
}

Expand Down

0 comments on commit eb51eda

Please sign in to comment.