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 "$WORKSPACE/test.csv" \
+bauxite -t 60 -o 240 --jenkins "$WORKSPACE/test-results" \
"$WORKSPACE/test/suite.bxt"</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'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'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><publishers>
...
<hudson.plugins.plot.PlotPublisher plugin="plot@1.5">
<plots>
<hudson.plugins.plot.Plot>
<title>Number of tests</title>
<yaxis>Number of tests</yaxis>
<series>
<hudson.plugins.plot.CSVSeries>
- <file>test.csv</file>
+ <file>test-results/summary.csv</file>
<label></label>
<fileType>csv</fileType>
<strExclusionSet>
<string>OK</string>
<string>Failed</string>
@@ -501,10 +504,10 @@
<hudson.plugins.plot.Plot>
<title>Test Execution Time</title>
<yaxis>Test time (s)</yaxis>
<series>
<hudson.plugins.plot.CSVSeries>
- <file>test.csv</file>
+ <file>test-results/summary.csv</file>
<label></label>
<fileType>csv</fileType>
<strExclusionSet>
<string>Time</string>
</strExclusionSet>