scripts/build_epydocs.sh
author Todd Larsen <tlarsen@google.com>
Mon, 04 Aug 2008 22:38:35 +0000
changeset 63 9b1909e46633
parent 10 56109601507d
child 130 63248d9db484
permissions -rwxr-xr-x
Move tests/ to top level of trunk/. Fix tests to run from new location. Add missing __init__.py modules to make relative imports from tests work properly.

#!/bin/bash

echo "Running epydoc..."
echo $1

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

echo "Done."