Skip to content

Commit 7c3b761

Browse files
committed
black
1 parent b858d22 commit 7c3b761

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/main/python/systemds/context/systemds_context.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,9 @@ def exception_and_close(self, exception, trace_back_limit: int = None):
261261
)
262262
)
263263
)
264-
self._log.error("Encountered exception & shutting down: \n\n{}".format(tb_str.strip()))
264+
self._log.error(
265+
"Encountered exception & shutting down: \n\n{}".format(tb_str.strip())
266+
)
265267

266268
self.close()
267269
raise RuntimeError(message)

src/main/python/tests/matrix/test_aggregations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class TestMatrixAggFn(unittest.TestCase):
3939

4040
@classmethod
4141
def setUpClass(cls):
42-
cls.sds = SystemDSContext()
42+
cls.sds = SystemDSContext(capture_stdout=True, logging_level=50)
4343

4444
@classmethod
4545
def tearDownClass(cls):

src/main/python/tests/matrix/test_arg_min_max.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def weighted_quantiles(values, weights, quantiles=0.5):
3939

4040
class TestARGMINMAX(unittest.TestCase):
4141
def setUp(self):
42-
self.sds = SystemDSContext()
42+
self.sds = SystemDSContext(capture_stdout=True, logging_level=50)
4343

4444
def tearDown(self):
4545
self.sds.close()

0 commit comments

Comments
 (0)