diff --git a/flavours/classic/config/runtime.exs b/flavours/classic/config/runtime.exs index 643e8d01ff..178980608c 100755 --- a/flavours/classic/config/runtime.exs +++ b/flavours/classic/config/runtime.exs @@ -78,7 +78,7 @@ if (config_env() == :prod or System.get_env("OTEL_ENABLED") == "1") and end ## load extensions' runtime configs (and behaviours) directly via extension-provided modules -Bonfire.Common.Config.LoadExtensionsConfig.load_configs() +Bonfire.Common.Config.LoadExtensionsConfig.load_configs(Bonfire.RuntimeConfig) ## System.get_env("DATABASE_URL") || System.get_env("POSTGRES_PASSWORD") || System.get_env("CI") || diff --git a/mix.lock b/mix.lock index e57a1ec97b..279ca2bf5d 100644 --- a/mix.lock +++ b/mix.lock @@ -44,7 +44,7 @@ "bonfire_search": {:git, "https://github.com/bonfire-networks/bonfire_search", "115094139ee22138cec9d34c5cd7ec5f0b2a8a69", [branch: "main"]}, "bonfire_social": {:git, "https://github.com/bonfire-networks/bonfire_social", "5b7162deac77d9ded3804b2673350e11621cdf09", [branch: "main"]}, "bonfire_tag": {:git, "https://github.com/bonfire-networks/bonfire_tag", "cf27590ce2ff230aab2429f66ad5039097570989", [branch: "main"]}, - "bonfire_ui_common": {:git, "https://github.com/bonfire-networks/bonfire_ui_common", "2f3dfeec74199fc1bb9f26cf761582f7d0333c2f", [branch: "main"]}, + "bonfire_ui_common": {:git, "https://github.com/bonfire-networks/bonfire_ui_common", "443acb4fa2d16f1375bd079127692d4b0dedb249", [branch: "main"]}, "bonfire_ui_coordination": {:git, "https://github.com/bonfire-networks/bonfire_ui_coordination", "2fd412764bfa82aebede8e0b97e8715a834a8db1", [branch: "main"]}, "bonfire_ui_kanban": {:git, "https://github.com/bonfire-networks/bonfire_ui_kanban", "22b3378bb7d57105743e7541b777078663636a75", [branch: "main"]}, "bonfire_ui_me": {:git, "https://github.com/bonfire-networks/bonfire_ui_me", "22a358376c58c4cbfad61c07fcec4baa732b8c9e", [branch: "main"]}, diff --git a/test/test_helper.exs b/test/test_helper.exs index 3e8780fa35..830dd48046 100755 --- a/test/test_helper.exs +++ b/test/test_helper.exs @@ -11,6 +11,7 @@ ExUnit.configure( # Code.put_compiler_option(:nowarn_unused_vars, true) ExUnit.start( + timeout: 200_000, exclude: Bonfire.Common.RuntimeConfig.skip_test_tags(), # only show log for failed tests (Can be overridden for individual tests via `@tag capture_log: false`) capture_log: true