https://github.com/esl/amoc
A load-testing framework for running massively parallel tests
https://github.com/esl/amoc
erlang load-orchetrator load-testing parallel-testing testing-framework
Last synced: 18 days ago
JSON representation
A load-testing framework for running massively parallel tests
- Host: GitHub
- URL: https://github.com/esl/amoc
- Owner: esl
- License: apache-2.0
- Created: 2015-01-31T10:57:07.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2025-02-22T17:55:24.000Z (2 months ago)
- Last Synced: 2025-04-03T10:11:20.378Z (27 days ago)
- Topics: erlang, load-orchetrator, load-testing, parallel-testing, testing-framework
- Language: Erlang
- Homepage: https://hexdocs.pm/amoc/readme.html
- Size: 7.89 MB
- Stars: 98
- Watchers: 46
- Forks: 24
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 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)