Wed, 14 Sep 2005 13:49:58 +0000 |
cmlenz |
Fix a regression introduced in [206]: When the path of a build configuration did not exactly match the path in the repository (trailing slash and all), the builds wouldn't be displayed on the config page.
|
Tue, 13 Sep 2005 10:32:25 +0000 |
cmlenz |
* Don't schedule/display builds for revisions where the repository directory is empty. Fixes #46.
|
Mon, 12 Sep 2005 21:59:14 +0000 |
cmlenz |
In preparation for supporting BDB XML transactions, move the report store backend selection away from using Trac extension points, and use a plain Python object instead of a component to represent a store backend.
|
Mon, 12 Sep 2005 17:48:15 +0000 |
cmlenz |
Allow deletion of build configurations from the web interface. Closes #27.
|
Mon, 12 Sep 2005 16:01:08 +0000 |
cmlenz |
Fix target platform matching when a rule references a property not provided by the build slave. Closes #45.
|
Mon, 12 Sep 2005 15:34:58 +0000 |
cmlenz |
If BDB XML was not installed, viewing the build results page would fail because returned None instead of an empty list.
|
Sun, 11 Sep 2005 12:07:48 +0000 |
cmlenz |
Fix target platform management under mod_python. Closes #44.
|
Wed, 31 Aug 2005 23:32:30 +0000 |
cmlenz |
Increment version number
release-0.4
|
Wed, 31 Aug 2005 23:13:24 +0000 |
cmlenz |
Typos, clarifications.
|
Wed, 31 Aug 2005 22:58:43 +0000 |
cmlenz |
Added [source:trunk/README.txt README.txt] to explain installation, configuration and usage of Bitten. Closes #36.
|
Wed, 31 Aug 2005 19:05:24 +0000 |
cmlenz |
Fix session termination in BEEP when more than one session is active.
|
Wed, 31 Aug 2005 17:57:33 +0000 |
cmlenz |
If no explicit name is provided for the slave, use the first part of the host name (i.e. the part up to the first dot).
|
Wed, 31 Aug 2005 17:46:37 +0000 |
cmlenz |
Aggregate test count and coverage/loc info per revision. Previously, a separate entry in the chart would be shown for every build, which would yield weird results when multiple target platforms were configured.
|
Wed, 31 Aug 2005 17:24:35 +0000 |
cmlenz |
Add a `--dry-run` option to the build slave. This will result in the slave being registered and executing builds, but without submitting the progress and results of the build back to the server. Useful for getting the configuration of new slaves right without polluting the database with invalid builds.
|
Wed, 31 Aug 2005 16:43:05 +0000 |
cmlenz |
Allow invalidation of builds from the web interface. This results in the build being reset to ''PENDING'' status, and all build logs, slave information and reports deleted. Basically initiates a rebuild for a specific revision and target platform.
|
Wed, 31 Aug 2005 15:29:04 +0000 |
cmlenz |
* Normalize separators in file paths to "/" in `FileSet`s, so that pattern matching against `include`/`exclude` patterns also works on Windows.
|
Wed, 31 Aug 2005 13:34:17 +0000 |
cmlenz |
* Make the chart generation `ExtensionPoint`-based.
|
Wed, 31 Aug 2005 01:49:59 +0000 |
cmlenz |
More changes following the renames in r187/r188.
|
Wed, 31 Aug 2005 01:34:20 +0000 |
cmlenz |
Wasn't such a good idea to move around the `charts_library` folder, so revert that.
|
Wed, 31 Aug 2005 01:11:04 +0000 |
cmlenz |
Add the XML/SWF charts library to the package data.
|
Wed, 31 Aug 2005 01:00:37 +0000 |
cmlenz |
Add some basic charts to the build status page, based on [http://www.maani.us/xml_charts/index.php XML/SWF Charts]:
|
Wed, 31 Aug 2005 00:46:12 +0000 |
cmlenz |
Implement the `gettext()` method of the XML element adapter for BDB XML.
|
Wed, 31 Aug 2005 00:37:07 +0000 |
cmlenz |
Make sure that numbers in text nodes are converted to strings.
|
Tue, 30 Aug 2005 18:56:14 +0000 |
cmlenz |
Fix the BDB XML upgrade procedure: If a document is found that is associated with a non-existing build, just remove it.
|
Tue, 30 Aug 2005 18:44:55 +0000 |
cmlenz |
* Changed the `IReportStore` interface to allow querying with [http://www.w3.org/XML/Query/ XQuery]. This should make it possible to efficiently query the report store for any existing metrics.
|
Tue, 30 Aug 2005 10:45:29 +0000 |
cmlenz |
Show lines of code in 'Code Coverage' summary.
|
Tue, 30 Aug 2005 10:28:24 +0000 |
cmlenz |
More improvements to the `<python:trace>` code coverage report:
|
Tue, 30 Aug 2005 10:08:28 +0000 |
cmlenz |
Allow retrieving the reports for all steps of a given build.
|
Tue, 30 Aug 2005 09:51:52 +0000 |
cmlenz |
Remove the test snippet from {{{bitten.util.loc}}}.
|
Tue, 30 Aug 2005 09:50:20 +0000 |
cmlenz |
For more accurate code coverage reporting, include the statistics for modules that haven't been run at all during the tests. To do this, we need to count the lines of code in those modules. This is done by the `bitten.util.loc` module, which is based on [http://starship.python.net/crew/gherman/playground/pycount/ pycount.py] (but heavily modified).
|