Browse Source

proper packaging, stage2

main
kiorky 14 years ago
parent
commit
85f4235143
15 changed files with 15 additions and 9 deletions
  1. +1
    -0
      .gitignore
  2. +4
    -0
      docs/CHANGES.txt
  3. +0
    -0
      docs/ZPL
  4. +0
    -0
      docs/license.txt
  5. +0
    -5
      src/wstools/test/__init__.py
  6. +0
    -0
      src/wstools/tests/.cvsignore
  7. +0
    -0
      src/wstools/tests/README
  8. +1
    -0
      src/wstools/tests/__init__.py
  9. +0
    -0
      src/wstools/tests/config.txt
  10. +0
    -0
      src/wstools/tests/schema.tar.gz
  11. +0
    -0
      src/wstools/tests/test_t1.py
  12. +9
    -4
      src/wstools/tests/test_wsdl.py
  13. +0
    -0
      src/wstools/tests/test_wstools.py
  14. +0
    -0
      src/wstools/tests/test_wstools_net.py
  15. +0
    -0
      src/wstools/tests/xmethods.tar.gz

+ 1
- 0
.gitignore View File

@@ -1 +1,2 @@
*.egg-info
*.pyc

+ 4
- 0
docs/CHANGES.txt View File

@@ -0,0 +1,4 @@
0.1
------

- make wstools as an egg

ZPL → docs/ZPL View File


license.txt → docs/license.txt View File


+ 0
- 5
src/wstools/test/__init__.py View File

@@ -1,5 +0,0 @@
#! /usr/bin/env python
"""wstools.WSDLTools.WSDLReader tests directory."""

import utils


src/wstools/test/.cvsignore → src/wstools/tests/.cvsignore View File


src/wstools/test/README → src/wstools/tests/README View File


+ 1
- 0
src/wstools/tests/__init__.py View File

@@ -0,0 +1 @@
#! /usr/bin/env python

src/wstools/test/config.txt → src/wstools/tests/config.txt View File


src/wstools/test/schema.tar.gz → src/wstools/tests/schema.tar.gz View File


src/wstools/test/test_t1.py → src/wstools/tests/test_t1.py View File


src/wstools/test/test_wsdl.py → src/wstools/tests/test_wsdl.py View File

@@ -7,9 +7,13 @@

import sys, unittest
import ConfigParser
from ZSI.wstools.Utility import DOM
from ZSI.wstools.WSDLTools import WSDLReader
from ZSI.wstools.TimeoutSocket import TimeoutError
import os
from wstools.Utility import DOM
from wstools.WSDLTools import WSDLReader
from wstools.TimeoutSocket import TimeoutError

from wstools import tests
cwd = os.path.dirname(tests.__file__)

class WSDLToolsTestCase(unittest.TestCase):

@@ -129,7 +133,8 @@ class WSDLToolsTestCase(unittest.TestCase):

def setUpOptions(section):
cp = ConfigParser.ConfigParser()
cp.read('config.txt')
import pdb;pdb.set_trace() ## Breakpoint ##
cp.read(cwd+'/config.txt')
if not cp.sections():
print 'fatal error: configuration file config.txt not present'
sys.exit(0)

src/wstools/test/test_wstools.py → src/wstools/tests/test_wstools.py View File


src/wstools/test/test_wstools_net.py → src/wstools/tests/test_wstools_net.py View File


src/wstools/test/xmethods.tar.gz → src/wstools/tests/xmethods.tar.gz View File


Loading…
Cancel
Save