11 lines
382 B
Elixir
11 lines
382 B
Elixir
ExUnit.start()
|
|
|
|
# Exclude integration tests by default
|
|
# Run them with: mix test --only integration
|
|
ExUnit.configure(exclude: [:integration])
|
|
|
|
# Define mocks for testing
|
|
Mox.defmock(Towerops.Monitoring.PingMock, for: Towerops.Monitoring.PingBehaviour)
|
|
Mox.defmock(Towerops.Snmp.PollerMock, for: Towerops.Snmp.PollerBehaviour)
|
|
|
|
Ecto.Adapters.SQL.Sandbox.mode(Towerops.Repo, :manual)
|