Skip to content

Commit 98db05e

Browse files
Enable config.DEBUG
1 parent 9bbeaff commit 98db05e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numba_dppy/tests/test_debug_dppy_numba.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ def spawn(self):
6262
env["NUMBA_EXTEND_VARIABLE_LIFETIMES"] = "1"
6363

6464
self.child = pexpect.spawn("gdb-oneapi -q python", env=env, encoding="utf-8")
65-
# if config.DEBUG:
66-
self.child.logfile = sys.stdout
65+
if config.DEBUG:
66+
self.child.logfile = sys.stdout
6767

6868
def setup_gdb(self):
6969
self.child.expect("(gdb)", timeout=5)

0 commit comments

Comments
 (0)