Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #67451 > unrolled thread

source code control and documentation

Started byRita <rmorgan466@gmail.com>
First post2014-03-02 10:56 -0500
Last post2014-03-02 10:56 -0500
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python


Contents

  source code control and documentation Rita <rmorgan466@gmail.com> - 2014-03-02 10:56 -0500

#67451 — source code control and documentation

FromRita <rmorgan466@gmail.com>
Date2014-03-02 10:56 -0500
Subjectsource code control and documentation
Message-ID<mailman.7583.1393775825.18130.python-list@python.org>

[Multipart message — attachments visible in raw view] — view raw

Hi,


I am trying to achieve this, every time I commit to svn I automatically
 run hooks to test my libraries, ATM I am doing this manually

cd libs
PYTHONPATH=. python test_lib.py

and if everything passes I do a svn commit -m 'committing code'

I don't have access to my svn server so I can't create my own hooks (or can
I?)

Also, I would like to auto-document my library and project so, when I do a
svn commit I would like to generate a sphinix-doc (and I am open to
suggestions).  In the source code do I need to do anything special to my
Classes and Functions?

class myClass(object):
  ""do I need to do anything special here"""?

Ideally, I would like to automatically draw a UML diagram since my codebase
is rather large.




How do people achieve this?



-- 
--- Get your facts first, then you can distort them as you please.--

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web