From 9bb485cbb9786eefcbc12a458d352fb526c52834 Mon Sep 17 00:00:00 2001 From: Simon Pasquier Date: Thu, 12 May 2016 16:29:54 +0200 Subject: [PATCH] Update README.md Change-Id: I4200ecd7830e7a01f43f845554bbaab6b0c7f990 --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index adf653f..3d79262 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,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=["", @@ -51,13 +51,15 @@ Guidelines: ""]) ``` - For example: + For example ``` @test(groups=["install_influxdb_grafana", "install", "influxdb_grafana", "smoke"]) +def install_influxdb_grafana(): + .... ``` ## Communication