Edgewall Software

Changes between Version 75 and Version 76 of Bitten Faq


Ignore:
Timestamp:
Oct 15, 2008, 9:22:03 PM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Bitten Faq

    v75 v76  
    118118The charts are added automatically if your recipe creates junit reports and/or code-coverage reports.  To see a sample recipe that will produce junit test results from Java see [wiki:BittenSampleJavaRecipe build recipes for Java projects using JUnit and Ant].  To create your own custom charts, see [wiki:AddingCharts Adding Custom Charts to Bitten.]
    119119
    120 == Test Your installation  ==
    121 === Where is bitten-slave ? ===
    122 {{{
    123 me@ubuntu:~$ which bitten-slave
    124 /usr/bin/bitten-slave
    125 me@ubuntu:~$ head /usr/bin/bitten-slave
    126 #!/usr/bin/python
    127 # EASY-INSTALL-ENTRY-SCRIPT: 'Bitten==0.6dev-r559','console_scripts','bitten-slave'
    128 __requires__ = 'Bitten==0.6dev-r559'
    129 import sys
    130 from pkg_resources import load_entry_point
    131 
    132 sys.exit(
    133    load_entry_point('Bitten==0.6dev-r559', 'console_scripts', 'bitten-slave')()
    134 )
    135 me@ubuntu:~$
    136 
    137 }}}
    138 === How to I poke bitten server ? ===
    139 {{{
    140 me@ubuntu:~$ bitten-slave http://ubuntu.test.net/projects/hobbit/builds
    141 [INFO    ] No pending builds
    142 [INFO    ] Shutting down
    143 me@ubuntu:~$
    144 
    145 }}}