Edgewall Software

Changes between Version 61 and Version 62 of Bitten Faq


Ignore:
Timestamp:
Sep 25, 2008, 7:35:41 PM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Bitten Faq

    v61 v62  
    125125The 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.]
    126126
    127 == Test ==
     127== Test Your installation  ==
     128=== Where is bitten-slave ? ===
     129{{{
     130me@ubuntu:~$ which bitten-slave
     131/usr/bin/bitten-slave
     132me@ubuntu:~$ head /usr/bin/bitten-slave
     133#!/usr/bin/python
     134# EASY-INSTALL-ENTRY-SCRIPT: 'Bitten==0.6dev-r559','console_scripts','bitten-slave'
     135__requires__ = 'Bitten==0.6dev-r559'
     136import sys
     137from pkg_resources import load_entry_point
     138
     139sys.exit(
     140   load_entry_point('Bitten==0.6dev-r559', 'console_scripts', 'bitten-slave')()
     141)
     142me@ubuntu:~$
     143
     144}}}
    128145=== How to I poke bitten server ? ===
    129146{{{