Skip to content

Commit 6f843c0

Browse files
author
Vasileios Karakasis
committed
Remove redundant call to sn.all()
1 parent 07e0061 commit 6f843c0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

cscs-checks/system/jobreport/gpu_report.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import time
99

1010
from reframe.core.exceptions import SanityError
11-
from hpctestlib.microbenchmarks.gpu.gpu_burn import gpu_burn_check
11+
from hpctestlib.microbenchmarks.gpu.gpu_burn import gpu_burn_check
1212

1313

1414
@rfm.simple_test
@@ -55,9 +55,7 @@ def assert_jobreport_success(self):
5555
except SanityError:
5656
time.sleep(25)
5757

58-
return sn.all([
59-
self.assert_successful_burn_count(), self.gpu_usage_sanity()
60-
])
58+
return self.assert_successful_burn_count(), self.gpu_usage_sanity()
6159

6260
@deferrable
6361
def gpu_usage_sanity(self):

0 commit comments

Comments
 (0)