Update CONTRIBUTING.md
This commit is contained in:
parent
769f81d820
commit
09c6193e7c
|
|
@ -41,7 +41,22 @@ Assuming you have:
|
|||
* have a local running RabbitMQ node with the `rabbitmq-federation` plugin enabled (for parameter management testing),
|
||||
e.g. `make run-broker PLUGINS='rabbitmq_federation rabbitmq_stomp'` from a [server release repository](https://github.com/rabbitmq/rabbitmq-server-release) clone
|
||||
|
||||
you can simply run `make tests` within the project root directory. To run a single test: `make test TEST_FILE=test/help_command_test.exs`. And if you want to run in verbose mode, specify `V=1` make variable.
|
||||
you can simply run `make tests` within the project root directory.
|
||||
|
||||
### Running a Single Test Case
|
||||
|
||||
To run a single test case, use `make test` like so:
|
||||
|
||||
```
|
||||
make test TEST_FILE=test/help_command_test.exs
|
||||
```
|
||||
|
||||
And if you want to run in verbose mode, set the `V` make variable:
|
||||
|
||||
```
|
||||
make test TEST_FILE=test/help_command_test.exs V=1
|
||||
```
|
||||
|
||||
|
||||
NOTE: You may see the following message several times:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue