Skip to content

Commit 3fb1035

Browse files
committed
Disable output capturing temporarily
1 parent 6e5eeb4 commit 3fb1035

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ jobs:
6464
pip install -r requirements-connector-radical.txt
6565
make launcher-scripts
6666
make install
67-
PYTHONPATH=$(flux env | grep PYTHONPATH | sed -E 's/.*PYTHONPATH="(.*)"/\1/') OMPI_ALLOW_RUN_AS_ROOT=1 OMPI_ALLOW_RUN_AS_ROOT_CONFIRM=1 make tests
67+
PYTHONPATH=$(flux env | grep PYTHONPATH | sed -E 's/.*PYTHONPATH="(.*)"/\1/') OMPI_ALLOW_RUN_AS_ROOT=1 OMPI_ALLOW_RUN_AS_ROOT_CONFIRM=1 make tests -- -s

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ def pytest_addoption(parser):
8080

8181
def debug(sig, frame):
8282
with open('/tmp/python-dump.txt', 'w') as f:
83-
f.write('Test')
8483
try:
8584
for thr in threading.enumerate():
8685
f.write(str(thr))
@@ -91,7 +90,8 @@ def debug(sig, frame):
9190
f.write(str(ex))
9291

9392

94-
signal.signal(signal.SIGUSR1, debug) # Register handler
93+
signal.signal(signal.SIGUSR1, debug)
94+
print('SIGUSR1 handler installed.')
9595

9696

9797
def _get_executors(config: Dict[str, str]) -> List[str]:

0 commit comments

Comments
 (0)