- Delete dead config keys and test file (typo'd aprsme_is_*, vacuous disable test) - Remove duplicate function clauses and identical function pairs - Rename misleading one_hour_ago variable to one_day_ago - Strip stale Oban comment - Remove TestHelpers time function duplicates - Inline Aprsme.Schema module (only 1 caller) - Deduplicate prod esbuild config - Thin SymbolRenderer delegations, inline TimeUtils wrappers - Remove redundant DeploymentNotifier GenServer polling - Replace random fallback in get_callsign_key with sentinel
31 lines
1 KiB
Elixir
31 lines
1 KiB
Elixir
# Reduce parallelism when coverage is enabled to prevent file descriptor exhaustion
|
|
max_cases =
|
|
if System.get_env("MIX_TEST_COVERAGE") do
|
|
2
|
|
else
|
|
System.schedulers_online() * 4
|
|
end
|
|
|
|
ExUnit.start(
|
|
max_cases: max_cases,
|
|
timeout: 30_000,
|
|
capture_log: true,
|
|
exclude: [:integration]
|
|
)
|
|
|
|
Ecto.Adapters.SQL.Sandbox.mode(Aprsme.Repo, :manual)
|
|
|
|
# Configure Mox
|
|
Mox.defmock(Aprsme.PacketsMock, for: Aprsme.PacketsBehaviour)
|
|
Mox.defmock(Aprsme.PacketReplayMock, for: Aprsme.PacketReplayBehaviour)
|
|
Mox.defmock(PacketsMock, for: Aprsme.PacketsBehaviour)
|
|
|
|
# Set up default stubs for commonly used functions
|
|
Mox.stub(Aprsme.PacketsMock, :get_recent_packets, fn _opts -> [] end)
|
|
Mox.stub(Aprsme.PacketsMock, :get_nearby_stations, fn _lat, _lon, _exclude, _opts -> [] end)
|
|
|
|
# Ensure no external APRS connections during tests
|
|
Application.put_env(:aprsme, :aprs_is_server, "mock.aprs.test")
|
|
Application.put_env(:aprsme, :packets_module, Aprsme.PacketsMock)
|
|
|
|
# AprsIsMock is automatically loaded from test/support via elixirc_paths
|