mirror of
https://github.com/openai/codex.git
synced 2026-09-08 15:50:34 +00:00
Fix requirements CI failures
This commit is contained in:
@@ -2198,9 +2198,12 @@ mod tests {
|
||||
sqlite_home: Some(Sourced::new(sqlite_home, source.clone())),
|
||||
log_dir: Some(Sourced::new(log_dir, source.clone())),
|
||||
model_catalog_json: Some(Sourced::new(model_catalog_json, source.clone(),)),
|
||||
check_for_update_on_startup: Some(Sourced::new(false, source.clone())),
|
||||
check_for_update_on_startup: Some(Sourced::new(
|
||||
/*value*/ false,
|
||||
source.clone(),
|
||||
)),
|
||||
otel: Some(Sourced::new(otel, source.clone())),
|
||||
allow_login_shell: Some(Sourced::new(false, source.clone())),
|
||||
allow_login_shell: Some(Sourced::new(/*value*/ false, source.clone())),
|
||||
shell_environment_policy: Some(Sourced::new(
|
||||
shell_environment_policy,
|
||||
source.clone(),
|
||||
|
||||
@@ -9341,9 +9341,9 @@ sandbox_private_desktop = true
|
||||
r#"
|
||||
cli_auth_credentials_store = "keyring"
|
||||
chatgpt_base_url = "https://managed.example/backend-api"
|
||||
sqlite_home = "{}"
|
||||
log_dir = "{}"
|
||||
model_catalog_json = "{}"
|
||||
sqlite_home = {:?}
|
||||
log_dir = {:?}
|
||||
model_catalog_json = {:?}
|
||||
check_for_update_on_startup = false
|
||||
allow_login_shell = false
|
||||
|
||||
|
||||
Reference in New Issue
Block a user