Skip to content

Commit

Permalink
Merge pull request #555 from cpanel/ci_integration_test_hotfix
Browse files Browse the repository at this point in the history
Skip checking the imunify360 service in the integration test
  • Loading branch information
cPholloway authored Nov 19, 2024
2 parents bcc34a7 + 53c28c5 commit 23dbc87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/integration/complete.t
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ note "Gather service status...";
my $svcstatus = run_api(qw{whmapi1 servicestatus});
if ( ref $svcstatus->{'data'}{'service'} eq 'ARRAY' ) {
foreach my $svc_info ( $svcstatus->{'data'}{'service'}->@* ) {
next if !$svc_info->{'enabled'} || $svc_info->{'name'} eq 'mailman' || $svc_info->{'name'} eq 'tailwatchd';
next if !$svc_info->{'enabled'} || $svc_info->{'name'} eq 'mailman' || $svc_info->{'name'} eq 'tailwatchd' || $svc_info->{'name'} eq 'imunify360';
ok( $svc_info->{'running'}, "$svc_info->{'name'} is running" );
}
}
Expand Down

0 comments on commit 23dbc87

Please sign in to comment.