You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For tests that manipulate environment variables, it is easy to trigger a race condition when tests run concurrently, such as when one test sets a variable and another unsets it. Rather than forcing test authors to use os.unsetenv or change os.environ, allow passing environment variable settings down through run_sst into the subprocess.Popen call.
The text was updated successfully, but these errors were encountered:
For tests that manipulate environment variables, it is easy to trigger a race condition when tests run concurrently, such as when one test sets a variable and another unsets it. Rather than forcing test authors to use
os.unsetenv
or changeos.environ
, allow passing environment variable settings down throughrun_sst
into thesubprocess.Popen
call.The text was updated successfully, but these errors were encountered: