Merge "Update README.md"

This commit is contained in:
Jenkins 2016-05-12 15:30:18 +00:00 committed by Gerrit Code Review
commit 9ce0d62fb4

View File

@ -43,7 +43,7 @@ Guidelines:
* Run `tox` before submitting a review.
* Declare test groups using the following pattern:
* Declare test groups using the @test decorator (see the [Proboscis](https://pythonhosted.org/proboscis) documentation for details)
```
@test(groups=["<full_unique_name_of_test>",
@ -52,13 +52,15 @@ Guidelines:
"<test_category>"])
```
For example:
For example
```
@test(groups=["install_influxdb_grafana",
"install",
"influxdb_grafana",
"smoke"])
def install_influxdb_grafana():
....
```
## Communication