fix tests

This commit is contained in:
Mayel de Borniol 2022-05-25 14:30:19 +12:00
parent dda1bdaf40
commit 6b19723374
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@
"bonfire_open_id": {:git, "https://github.com/bonfire-networks/bonfire_open_id", "acfba1cd060b8307c2def9bcb08ecb76dd9f4aaf", [branch: "main"]},
"bonfire_quantify": {:git, "https://github.com/bonfire-networks/bonfire_quantify", "bbfa8bac5d16ebf9a58b0e98ebd60f4423e8e570", [branch: "main"]},
"bonfire_search": {:git, "https://github.com/bonfire-networks/bonfire_search", "9d58ee699b19df085d6ce8cd759a4dd854feaf3c", [branch: "main"]},
"bonfire_social": {:git, "https://github.com/bonfire-networks/bonfire_social", "4a66b68cd189b4c09cefa74cc612d1957854eee0", [branch: "main"]},
"bonfire_social": {:git, "https://github.com/bonfire-networks/bonfire_social", "799a0fc759f55c9baa1daae352d8fbed9a8142f3", [branch: "main"]},
"bonfire_tag": {:git, "https://github.com/bonfire-networks/bonfire_tag", "ee02c6290a132a5b8da7d7c7e80cca1fe516ebbe", [branch: "main"]},
"bonfire_ui_common": {:git, "https://github.com/bonfire-networks/bonfire_ui_common", "d1ad881889cb0b18c933187304ef9057c601533f", [branch: "main"]},
"bonfire_ui_coordination": {:git, "https://github.com/bonfire-networks/bonfire_ui_coordination", "40b24b68b542c31a0c99be2650b8148c5ad01161", [branch: "main"]},

View file

@ -5,7 +5,7 @@ ExUnit.configure formatters: [ExUnit.CLIFormatter, ExUnitNotifier]
# Code.put_compiler_option(:nowarn_unused_vars, true)
skip = if System.get_env("TEST_INSTANCE")=="yes", do: [], else: [:test_instance]
skip = if System.get_env("CI"), do: skip, else: [:browser] ++ skip # skip browser automation tests in CI
skip = if System.get_env("CI"), do: [:browser] ++ skip, else: skip # skip browser automation tests in CI
ExUnit.start(
exclude: [:skip, :todo, :fixme] ++ skip,