views:

56

answers:

2

Hey, Do you know of a good free/open source test automation infrastructure?

I'm looking for infrastructure (python is preferred) which has features like:

  • connecting to a remote computer.
  • running python scripts on a remote computer.
  • Identification of UI components
  • watch dog.
  • test report summery generation
  • anything else useful (:

Thx, Udi.

A: 

The standard unit testing software for Python is PyUnit; I'm not sure how many of those "extras" it provides.

Alphax
+1  A: 

Buildbot seems to fit all your requirements.

With buildbot a master server can push out build & test requests to clients running on multiple platforms and collate the results.

A lot of open source projects use buildbot for their automated build & test system, including Python itself.

Dave Kirby