# A Murder of Crows
[](https://github.com/esl/amoc/actions?query=workflow%3ACI)
[](https://hex.pm/packages/amoc)
[](https://hexdocs.pm/amoc/)
[](https://codecov.io/github/esl/amoc)
---
A Murder of Crows, aka amoc, is a simple framework for running massively parallel tests in a distributed environment.
It can be used as a `rebar3` dependency:
```erlang
{deps, [
{amoc, "3.2.0"}
]}.
```
or in `mix`:
```elixir
defp deps() do
[
{:amoc, "~> 3.2"}
]
end
```
[MongooseIM](https://github.com/esl/MongooseIM) is continuously being load tested with Amoc.
All the XMPP scenarios can be found [here](https://github.com/esl/amoc-arsenal-xmpp).
---
In order to implement and run locally your scenarios, follow the chapters about
[developing](https://hexdocs.pm/amoc/scenario.html) and [running](https://hexdocs.pm/amoc/local-run.html)
a scenario locally.
Before [setting up the distributed environment](https://hexdocs.pm/amoc/distributed.html),
please read through the configuration overview.
To see the full documentation, see [hexdocs](https://hexdocs.pm/amoc).
You can also try with the livebook demo here:
[](https://livebook.dev/run?url=https%3A%2F%2Fgithub.com%2Fesl%2Famoc%2Fblob%2Fmaster%2Fguides%2Famoc_livebook.livemd)