473,394 Members | 1,709 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Python Projects Continuous Integration

Hi,

I'm just starting a development project in Python having spent time in
the Java world. I was wondering what tool advice you could give me
about setting up a continuous integration environment for the python
code: get the latest source, run all the tests, package up, produce the
docs, tag the code repository. I'm used to things like Maven and
CruiseControl in the Java world.

Cheers,

Dave.

Jul 28 '06 #1
8 4203
"Dave Potts" <d.*******@bcs.org.ukwrites:
Hi,

I'm just starting a development project in Python having spent time in
the Java world. I was wondering what tool advice you could give me
about setting up a continuous integration environment for the python
code: get the latest source, run all the tests, package up, produce the
docs, tag the code repository. I'm used to things like Maven and
CruiseControl in the Java world.

Cheers,

Dave.
First, sorry to hear you have had to use Java. You should recover
after a few months in Python. Second, welcome to Python. Third, some
of us emacs as our IDE.

I presume you often have several packages open at once, each with its
own regression tests, own documentation, and own CVS or SVN "module".
You may also have multiple coding languages going at once (e.g.,
Python, C, C++, FORTRAN, Lisp, PROLOG). Doing this in emacs:

1. Make a separate instance for each package being edited. In the
instance make separate frames for a) code buffers, b) test case
buffers, c) doc buffers. In the test frame, make a shell window
where you can run go_test, thus running your testsuite for that
package. In the doc frame, make a shell window where you can run
go_doc. (Must of couse have written those go_ scripts, also done
in emacs of course.).

If there are too many things happening for one desktop, run each
package in a separate desktop (you are working in an OS which has
virtual screens, right?).

2. Do CVS checkin/checkout in tool of your choice. Emacs can do it. I
prefer tkcvs, with editor set to emacs and diff set to emacs's'
ediff. Personal preference.

3. Do documentation in the tool of your choice. Emacs can support
pretty much any natural language, and has markups for just about
any markup mechanism (SGML, XHTML, etc.). I use my own Pdx, edited
in emacs, and thus autogenerate HTML, PDF, LaTeX, etc. Again,
personal preference. At a minimum, use some mechanism which allow
autogeneration of documentation, auto inclusion of code snippets,
and hyperlinking. Since the go_doc is run in an emacs shell, use
alt-P-return to rerun the line. Redocumenting is thus a 2
keystroke effort.

4. Do testing using a batch go_test script, running a suite built from
unittest. As needed, write debug statements to another buffer in
that frame, where you can use full emacs functionallity to search
it. Since the go_test is run in an emacs shell, use alt-P-return
to rerun the line. Retesting is thus a 2 keystroke effort.

5. Oh, yes, coding. Emacs's python-mode.el works fine. Colorize or
not as you see fit. There are ways to set up code-completion, but
personally I never do it. You can setup etags but I never do --
emacs search and grep-find do what I need. Personal preference.

6. Use exactly the same setup for language after language, decade
after decade, platform after platform. Use your brain cells form
something useful, like learning new technologies and new
algorithms.
--
Harry George
PLM Engineering Architecture
Jul 28 '06 #2

Harry George wrote:
"Dave Potts" <d.*******@bcs.org.ukwrites:
Hi,

I'm just starting a development project in Python having spent time in
the Java world. I was wondering what tool advice you could give me
about setting up a continuous integration environment for the python
code: get the latest source, run all the tests, package up, produce the
docs, tag the code repository. I'm used to things like Maven and
CruiseControl in the Java world.

Cheers,

Dave.

First, sorry to hear you have had to use Java. You should recover
after a few months in Python. Second, welcome to Python.
If you are serious about welcoming someone to Python, don't start by
making snide comments about their primary computer language. There are
trade-offs between Python and language X, for almost all X's.

Jul 28 '06 #3
Dave Potts wrote:
Hi,

I'm just starting a development project in Python having spent time in
the Java world. I was wondering what tool advice you could give me
about setting up a continuous integration environment for the python
code: get the latest source, run all the tests, package up, produce the
docs, tag the code repository. I'm used to things like Maven and
CruiseControl in the Java world.
Coming from the world of Java, you probably are familiar with Eclipse?
Might even have it installed already?

Eclipse comes with a very cool Python perspective, called Pydev.
Installation instructions can be found at: http://pydev.sourceforge.net/

Code completion, syntax coloring, etc etc, in my opinion Eclipse/Pydev
is one of the most convenient/advanced environments in which to work
with Python.

baalbek
Aug 6 '06 #4
Dave Potts wrote:
Hi,

I'm just starting a development project in Python having spent time in
the Java world. I was wondering what tool advice you could give me
about setting up a continuous integration environment for the python
code: get the latest source, run all the tests, package up, produce the
docs, tag the code repository. I'm used to things like Maven and
CruiseControl in the Java world.

Cheers,

Dave.
Buildbot might be what you are looking for:
http://buildbot.sourceforge.net/

Hope this helps,
Ziga

Aug 7 '06 #5
Ant

Harry George wrote:
[snip stuff about how to set emacs up as your IDE]
Not sure which post you read, but the OP of this thread was asking
about continuous integration, not integrated development environments.
i.e. tools to *automatically* check out code when the repository has
changed, build it if necessary (perhaps if there are C modules in the
case of python) and run the unit tests.

To the OP: you could of course simply continue to use cruise - it's
only a tool after all, and won't require any additional learning if you
are already having to learn a new language with all the associated
libraries and idioms.

Aug 7 '06 #6

Dave Potts wrote:
Hi,

I'm just starting a development project in Python having spent time in
the Java world. I was wondering what tool advice you could give me
about setting up a continuous integration environment for the python
code: get the latest source, run all the tests, package up, produce the
docs, tag the code repository. I'm used to things like Maven and
CruiseControl in the Java world.
Hello Dave,

At Resolver Systems we use Cruise Control .NET along with IronPython
and Subversion to provide Source Code Control and continuous
integration. The combination is *great*.

I've never had to configure it (I just poke it occassionally), but it
*looks* like it should be usable with non .NET projects: we have it
running all sorts of batch files and Python scripts as part of the
built and test process.

All the best,

Fuzzyman
http://www.voidspace.org.uk/python/index.shtml
Cheers,

Dave.
Aug 7 '06 #7
Ziga Seilnacht wrote:
Dave Potts wrote:
Hi,

I'm just starting a development project in Python having spent time in
the Java world. I was wondering what tool advice you could give me
about setting up a continuous integration environment for the python
code: get the latest source, run all the tests, package up, produce the
docs, tag the code repository. I'm used to things like Maven and
CruiseControl in the Java world.

Cheers,

Dave.

Buildbot might be what you are looking for:
http://buildbot.sourceforge.net/

Hope this helps,
Ziga
+1 for buildbot. It is amazingly flexible and powerful, once you get
past staring at the configuration file and trying to make sense of it.
Here's a blog post I wrote that can help you get started:
<http://agiletesting.blogspot.com/2006/02/continuous-integration-with-buildbot.html>.

Hope this helps,

Grig

Aug 7 '06 #8
Hello Dave,
I'm just starting a development project in Python having spent time in
the Java world. I was wondering what tool advice you could give me
about setting up a continuous integration environment for the python
code: get the latest source, run all the tests, package up, produce the
docs, tag the code repository. I'm used to things like Maven and
CruiseControl in the Java world.
If you are familiar with CruiseControl and Maven then it shouldn't be
too complicated to write a Maven file that run the tests, package up,
produce the docs. CruiseControl can take care of all the rest.

I also found that writing a simple Continuous integration system myself
was a very simple task in Python, it might be a good choice as well. (I
resorted to this solution after giving up on trying to install Java on
OpenBSD.)

HTH,
Miki
http://pythonwise.blogspot.com/

Aug 8 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

36
by: Andrea Griffini | last post by:
I did it. I proposed python as the main language for our next CAD/CAM software because I think that it has all the potential needed for it. I'm not sure yet if the decision will get through, but...
0
by: Wolfgang Keller | last post by:
Hello, Python seems to be used quite a lot for (the integration of) enterprise applications. Just as an example, there are at least three (projects for the implementation of) ERP systems in...
14
by: Giovanni Bajo | last post by:
Hello, python24.dll is much bigger than python23.dll. This was discussed already on the newsgroup, see the thread starting here:...
19
by: Nicolas Pernetty | last post by:
Hello, I'm looking for any work/paper/ressource about continuous system simulation using Python or any similar object oriented languages (or even UML theory !). I'm aware of SimPy for...
162
by: Sh4wn | last post by:
Hi, first, python is one of my fav languages, and i'll definitely keep developing with it. But, there's 1 one thing what I -really- miss: data hiding. I know member vars are private when you...
5
by: Hussein B | last post by:
Hi. Please correct my if I'm wrong but it seems to me that the major continuous integration servers (Hudson, CruiseControl, TeamCity ..) don't support Python based application. It seems they...
0
by: Jean-Paul Calderone | last post by:
On Tue, 29 Jul 2008 07:47:35 -0700 (PDT), Hussein B <hubaghdadi@gmail.comwrote: I haven't used CruiseControl or the other CIS you mention, but I suspect they can probably support Python programs....
6
by: Hussein B | last post by:
Hi. Apache Ant is the de facto building tool for Java (whether JSE, JEE and JME) application. With Ant you can do what ever you want: compile, generate docs, generate code, packing, deploy,...
0
by: Goldfish | last post by:
Spring Python 0.6.0, the python offshoot of the Spring framework and Spring Security, has been released (http:// springpython.webfactional.com). See...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.