How would I create builders that runs epydoc or/and pylint from a scons built?
Run epydoc and/or pylint builders from scons file
497 Views Asked by Sardathrion - against SE abuse At
3
There are 3 best solutions below
0

You can use the Command() builder instead of creating your own builder.
For instance, you could execute epydoc as follows:
# SCons will substitute $SOURCE and $TARGET accordingly
# add any extra cmd line args you need to the cmd string
cmd = 'epydoc $SOURCE $TARGET'
env.Command(target = yourTarget, source = yourSourceFile_s, action = cmd)
2

Here is what I ended up using, based on Brady's answer.
## Create epydoc!
import os.path
if os.path.isfile('/usr/bin/epydoc'):
sources = Split("__init__.py ook/ eek/ fubar/")
cmd = "epydoc -q --name 'Isotek Python Module collection' " + \
"--html --inheritance listed --graph all -o docs --css white " + \
"--parse-only --debug $SOURCES"
env.Command(target = Dir('docs'), source = sources, action = cmd)
else:
print "WARNING -- Cannot run epydoc so documentation will not be generated."
print "WARNING -- To install epydoc run 'sudo yum -y install epydoc'."
Note that I am running on fedora and do not need to worry about the code running elsewhere thus I can assume the path and how to install epydoc. A more general edit is welcome.
Here is another method, probably more portable to large projects.
First, define
epydoc.py
insite_scons/site_tools
(or where ever you have those) to be:In the main
SConstruct
file, add:Then, in your
SConstruct
file orSConscript
files, you can build documentation like so:Note: you could do the same thing for ctags and pylint, just to name a few.