File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -80,7 +80,6 @@ def pytest_addoption(parser):
8080
8181def 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
9797def _get_executors (config : Dict [str , str ]) -> List [str ]:
You can’t perform that action at this time.
0 commit comments