Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
cognifloyd committed Nov 9, 2024
1 parent 80c467e commit 76c918f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions st2api/tests/integration/test_gunicorn_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ def test_st2api_wsgi_entry_point(self):
env["ST2_CONFIG_PATH"] = ST2_CONFIG_PATH
env.update(st2tests.config.db_opts_as_env_vars())
env.update(st2tests.config.coord_opts_as_env_vars())
for key in env:
if key.startswith("ST2"):
print(env[key])
process = subprocess.Popen(cmd, env=env, shell=True, preexec_fn=os.setsid)
try:
self.add_process(process=process)
Expand All @@ -65,6 +68,9 @@ def test_st2auth(self):
env["ST2_CONFIG_PATH"] = ST2_CONFIG_PATH
env.update(st2tests.config.db_opts_as_env_vars())
env.update(st2tests.config.coord_opts_as_env_vars())
for key in env:
if key.startswith("ST2"):
print(env[key])
process = subprocess.Popen(cmd, env=env, shell=True, preexec_fn=os.setsid)
try:
self.add_process(process=process)
Expand Down

0 comments on commit 76c918f

Please sign in to comment.