buildframework/helium/doc/src/development/developer_guide.rst
changeset 645 b8d81fa19e7d
parent 628 7c4a911dc066
--- a/buildframework/helium/doc/src/development/developer_guide.rst	Wed Sep 29 17:48:06 2010 +0100
+++ b/buildframework/helium/doc/src/development/developer_guide.rst	Sun Oct 10 15:22:15 2010 +0300
@@ -249,7 +249,7 @@
 Also all setter methods visible through Ant must be documented properly using *@ant.required* 
 or *@ant.not-required* javadoc style attributes.
 
-You can find more information on how to document Ant tasks using the doclet plugin on http://doclet.neuroning.com/. 
+You can find more information on how to document Ant tasks using the doclet plugin on http://antdoclet.neuroning.com/.
 
 General coding guidelines
 -------------------------
@@ -264,7 +264,7 @@
 ----------------------------
 
 In order to match as must as  configurability concepts, Helium custom types and tasks must follow  development guidelines as 
-much as possible. You can find then on http://.apache.org/_task_guidelines.html.
+much as possible. You can find then on http://ant.apache.org/ant_task_guidelines.html.
 
 Logging
 -------
@@ -414,6 +414,15 @@
 
 Debug logs for component tests can be found at ``/build/components/<component>/xunit``.
 
+Filtering Python tests using nose
+---------------------------------
+
+Python unit tests are run through the nose testing framework. To run just a single Python test module, use::
+
+    bld test -Dcomponent=pythoncore -Dnose.args=amara
+    
+The value of ``nose.args`` is passed through to nose.
+
 
 .. index::
   single: Assertions