diff options
| author | Michael Klishin <mklishin@pivotal.io> | 2017-03-11 11:22:55 +0300 |
|---|---|---|
| committer | Michael Klishin <mklishin@pivotal.io> | 2017-03-11 11:22:55 +0300 |
| commit | 7bc567749d3c5230c219451e7675c63ae8862612 (patch) | |
| tree | c3b29efce8756aec12164e37d7baf18e36b28418 | |
| parent | aa28020bbc658a90d8abd5d7ef1906d9db9ea1da (diff) | |
| download | rabbitmq-server-git-7bc567749d3c5230c219451e7675c63ae8862612.tar.gz | |
Document new make targets that run tests
| -rw-r--r-- | CONTRIBUTING.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 45bbcbe62e..5318312b14 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,6 +25,25 @@ of their opinion on [RabbitMQ mailing list](https://groups.google.com/forum/#!fo See [CODE_OF_CONDUCT.md](./CODE_OF_CONDUCT.md). +## Running Tests + +To run a "fast suite" (a subset of tests): + + make ct-fast + +To run a "slow suite" (a subset of tests that take much longer to run): + + make ct-slow + +To run a particular suite: + + make ct-$suite_name + +for example, to run the `backing_queue` suite: + + make ct-backing_queue + + ## Contributor Agreement If you want to contribute a non-trivial change, please submit a signed copy of our |
