Changeset 1033

Show
Ignore:
Timestamp:
01/24/08 08:40:51
Author:
seang
Message:

Added a test target to setup.py

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • OWSLib/branches/wcstemp/setup.py

    r799 r1033  
    33 
    44setup(name          = 'OWSLib', 
    5       version       = '0.2.1', 
     5      version       = '0.3', 
    66      description   = 'OGC Web Service utility library', 
    77      license       = 'BSD', 
     
    1111      maintainer        = 'Sean Gillies', 
    1212      maintainer_email  = 'sgillies@frii.com', 
    13       url           = 'http://trac.gispython.org/projects/PCL/wiki/OwsLib', 
     13      url           = 'http://trac.gispython.org/projects/PCL/wiki/OWSLib', 
    1414      packages      = ['owslib'], 
    15       tests_require = ['zope.testing'], 
     15      #tests_require = ['zope.testing'], 
     16      test_suite    = 'tests.test_suite', 
    1617      classifiers   = [ 
    1718        'Development Status :: 3 - Alpha', 
  • OWSLib/branches/wcstemp/tests/__init__.py

    r799 r1033  
    11# package 
     2from test_doctests import test_suite 
  • OWSLib/branches/wcstemp/tests/test_doctests.py

    r799 r1033  
    2525import os 
    2626 
    27 from zope.testing import doctest 
     27try: 
     28    from zope.testing import doctest 
     29except ImportError: 
     30    import doctest 
    2831 
    2932optionflags = (doctest.REPORT_ONLY_FIRST_FAILURE |