Changeset 181:ea63012c37e1
- Timestamp:
- 09/30/07 17:30:04 (11 months ago)
- Author:
- tziade@…
- Message:
-
headers
- Location:
- eggchecker
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r175
|
r181
|
|
| 3 | 3 | ========== |
| 4 | 4 | |
| | 5 | Tarek Ziadé <tarek@ziade.org> |
| | 6 | |
| 5 | 7 | see src/README.txt |
| 6 | 8 | |
-
|
r179
|
r181
|
|
| 1 | | #!/usr/bin/env python2.4 |
| 2 | | ############################################################################## |
| | 1 | #!/usr/bin/python |
| | 2 | # -*- coding: UTF-8 -*- |
| 3 | 3 | # |
| 4 | | # Copyright (c) 2004 Zope Corporation and Contributors. |
| 5 | | # All Rights Reserved. |
| | 4 | # Copyright (c) 2007 Tarek Ziadé |
| 6 | 5 | # |
| 7 | | # This software is subject to the provisions of the Zope Public License, |
| 8 | | # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. |
| 9 | | # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED |
| 10 | | # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 11 | | # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS |
| 12 | | # FOR A PARTICULAR PURPOSE. |
| | 6 | # Authors: |
| | 7 | # Tarek Ziadé <tarek@ziade.org> |
| 13 | 8 | # |
| 14 | | ############################################################################## |
| 15 | | """Test script based on zope testrunner.py |
| 16 | | |
| 17 | | $Id: runtests.py 154 2007-09-30 17:52:09Z ogrisel $ |
| | 9 | # This program is free software; you can redistribute it and/or |
| | 10 | # modify it under the terms of the GNU General Public License |
| | 11 | # as published by the Free Software Foundation; either version 2 |
| | 12 | # of the License, or (at your option) any later version. |
| | 13 | # |
| | 14 | # This program is distributed in the hope that it will be useful, |
| | 15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| | 16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| | 17 | # GNU General Public License for more details. |
| | 18 | # |
| | 19 | # You should have received a copy of the GNU General Public License |
| | 20 | # along with this program; if not, write to the Free Software |
| | 21 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| | 22 | """ |
| | 23 | extracted and adapted from zope testrunner script |
| 18 | 24 | """ |
| 19 | 25 | import logging |