mirror of
https://github.com/plausible/analytics.git
synced 2024-12-03 15:03:06 +03:00
8ee4827fea
* order migrations * migrate in 'streaks' * cleanup * docs * tests * add comment * changelog * continue * run migrations tests in ci * add pending_streams cmd * fix ci * add docs * fix test * simplify test * only test v2+ * fix test * return async: true * cleanup * add 'no pending migration' * drop migrate/0 and pending_migrations/0 --------- Co-authored-by: Adrian Gruntkowski <adrian.gruntkowski@gmail.com>
32 lines
1.0 KiB
Elixir
32 lines
1.0 KiB
Elixir
if not Enum.empty?(Path.wildcard("lib/**/*_test.exs")) do
|
|
raise "Oops, test(s) found in `lib/` directory. Move them to `test/`."
|
|
end
|
|
|
|
{:ok, _} = Application.ensure_all_started(:ex_machina)
|
|
Mox.defmock(Plausible.HTTPClient.Mock, for: Plausible.HTTPClient.Interface)
|
|
Application.ensure_all_started(:double)
|
|
|
|
# Temporary flag to test `experimental_reduced_joins` flag on all tests.
|
|
if System.get_env("TEST_EXPERIMENTAL_REDUCED_JOINS") == "1" do
|
|
FunWithFlags.enable(:experimental_reduced_joins)
|
|
else
|
|
FunWithFlags.disable(:experimental_reduced_joins)
|
|
end
|
|
|
|
Ecto.Adapters.SQL.Sandbox.mode(Plausible.Repo, :manual)
|
|
|
|
# warn about minio if it's included in tests but not running
|
|
if :minio in Keyword.fetch!(ExUnit.configuration(), :include) do
|
|
Plausible.TestUtils.ensure_minio()
|
|
end
|
|
|
|
default_exclude = [:slow, :minio, :migrations]
|
|
|
|
if Mix.env() == :ce_test do
|
|
IO.puts("Test mode: Community Edition")
|
|
ExUnit.configure(exclude: [:ee_only | default_exclude])
|
|
else
|
|
IO.puts("Test mode: Enterprise Edition")
|
|
ExUnit.configure(exclude: [:ce_build_only | default_exclude])
|
|
end
|