For loop- detached bluesky #634
Unanswered
seetha-k-2004
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I am trying to run multiple BlueSky scenario files sequentially in headless mode.
This code used to run each
.scnfile one after another without the GUI. However, currently it starts the first scenario file and does not continue to the second one.It seems like the script is getting stuck at
subprocess.call(...)and never returns to the loop.import subprocess
import os
import sys
from IPython.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
def runBlueSky():
scenario_dir = r'D:\SEETHA004\bluesky\bluesky-master\scenario\conflicts'
bluesky_dir = r'D:\SEETHA004\bluesky\bluesky-master'
runBlueSky()
Observed behavior:
All reactions