doc/README_md.html in bauxite-0.6.5 vs doc/README_md.html in bauxite-0.6.6

- old
+ new

@@ -442,12 +442,11 @@ for the <code>jenkins</code> user (see the instructions above), you can create an execute shell build task with the following text:</p> <pre>#!/bin/bash source ~/.rvm/scripts/rvm -bauxite -l echo -u http://localhost:4444/wd/hub \ - -t 60 -o 240 --csv-summary &quot;$WORKSPACE/test.csv&quot; \ +bauxite -t 60 -o 240 --jenkins &quot;$WORKSPACE/test-results&quot; \ &quot;$WORKSPACE/test/suite.bxt&quot;</pre> <p>Assuming you have Selenium Server running on localhost and your workspace (e.g. GIT repo) contains a folder named <code>test</code> with a file named <code>suite.bxt</code> the configuration above should work like a charm.</p> @@ -459,27 +458,31 @@ test register.bxt test browse_around.bxt test purchase_something.bxt # more tests here...</pre> -<p>Note the <code>--csv-summary</code> option in the configuration above. That -option generates a single-line CSV file ideal to feed into the -<code>Plot</code> Jenkins plugin. I won&#39;t go into the details of -configuring the Plot plugin, but instead here is a fragment of a possible -Jenkins <code>config.xml</code> plotting the <a -href="Bauxite.html">Bauxite</a> test results:</p> +<p>Note the <code>--jenkins</code> option in the configuration above. That +option sets the default configuration arguments for Jenkins integration. +For more details on the <code>bauxite</code> command-line arguments refer +to the <a +href="http://pzavolinsky.github.io/bauxite/Bauxite/Application.html">RDoc +documentation</a>.</p> +<p>I won&#39;t go into the details of configuring the Jenkins publishing +plugins to print <a href="Bauxite.html">Bauxite</a> test results, but +instead here is a fragment of a possible Jenkins <code>config.xml</code>:</p> + <pre>&lt;publishers&gt; ... &lt;hudson.plugins.plot.PlotPublisher plugin=&quot;plot@1.5&quot;&gt; &lt;plots&gt; &lt;hudson.plugins.plot.Plot&gt; &lt;title&gt;Number of tests&lt;/title&gt; &lt;yaxis&gt;Number of tests&lt;/yaxis&gt; &lt;series&gt; &lt;hudson.plugins.plot.CSVSeries&gt; - &lt;file&gt;test.csv&lt;/file&gt; + &lt;file&gt;test-results/summary.csv&lt;/file&gt; &lt;label&gt;&lt;/label&gt; &lt;fileType&gt;csv&lt;/fileType&gt; &lt;strExclusionSet&gt; &lt;string&gt;OK&lt;/string&gt; &lt;string&gt;Failed&lt;/string&gt; @@ -501,10 +504,10 @@ &lt;hudson.plugins.plot.Plot&gt; &lt;title&gt;Test Execution Time&lt;/title&gt; &lt;yaxis&gt;Test time (s)&lt;/yaxis&gt; &lt;series&gt; &lt;hudson.plugins.plot.CSVSeries&gt; - &lt;file&gt;test.csv&lt;/file&gt; + &lt;file&gt;test-results/summary.csv&lt;/file&gt; &lt;label&gt;&lt;/label&gt; &lt;fileType&gt;csv&lt;/fileType&gt; &lt;strExclusionSet&gt; &lt;string&gt;Time&lt;/string&gt; &lt;/strExclusionSet&gt;