Elixir CI

HayCluster

A tool for testing your code in the clustered environment. Focused on correct coverage counting.

Highly inspired by LocalCluster.

Usage

defp deps do
  [
    {:hay_cluster, "~> 0.1.0"}
  ]
end
HayCluster.start_distribution()
Application.ensure_all_started(:my_app)
ExUnit.start()
defp aliases do
  [
    test: "test --no-start"
  ]
end