diff --git a/st2api/tests/integration/test_gunicorn_configs.py b/st2api/tests/integration/test_gunicorn_configs.py index c663aa83a7..3de3d85424 100644 --- a/st2api/tests/integration/test_gunicorn_configs.py +++ b/st2api/tests/integration/test_gunicorn_configs.py @@ -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) @@ -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)