scripts/build_epydocs.sh
author Todd Larsen <tlarsen@google.com>
Fri, 23 May 2008 00:22:07 +0000
changeset 35 07e9dc69074a
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
Replace verbose text in __doc__ string with link to wiki topic about using nosetests to run the tests.

#!/bin/bash

echo "Running epydoc..."
echo $1

epydoc --html -v --show-private --inheritance=included --graph=all \
  -o ../../wiki/html/epydoc $1

echo "Done."