Skip to content

Commit

Permalink
fix(*): Add CI files for code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
pankaj-ag committed Sep 11, 2023
1 parent 05baf9e commit 092d5ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Modules/HR/Database/Seeders/HRDatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class HRDatabaseSeeder extends Seeder
*/
public function run()
{
if (! app()->environment(['local', 'staging', 'UAT'])) {
if (! app()->environment(['local', 'staging', 'UAT', 'testing'])) {
return 0;
}
$this->call(HRPermissionsTableSeeder::class);
Expand Down
2 changes: 1 addition & 1 deletion database/Seeders/DatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class DatabaseSeeder extends Seeder
*/
public function run()
{
if (! app()->environment(['local', 'staging', 'UAT'])) {
if (! app()->environment(['local', 'staging', 'UAT', 'testing'])) {
return 0;
}

Expand Down

0 comments on commit 092d5ae

Please sign in to comment.