Enable https in test_listen_address so it renders

This commit is contained in:
Nicolas Surleraux
2023-05-24 11:53:18 +02:00
parent bbc6c465ac
commit bf360ec332

View File

@@ -244,8 +244,11 @@ def test_extra_config(tmpdir, tljh_dir):
def test_listen_address(tmpdir, tljh_dir):
state_dir = config.STATE_DIR
config.set_config_value(config.CONFIG_FILE, "https.enabled", True)
config.set_config_value(config.CONFIG_FILE, "http.address", "127.0.0.1")
config.set_config_value(config.CONFIG_FILE, "https.address", "127.0.0.1")
traefik.ensure_traefik_config(str(state_dir))
cfg = _read_static_config(state_dir)