~gandelman-a/ubuntu/precise/keystone/UCA_2012.2.1

« back to all changes in this revision

Viewing changes to run_tests.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandelman, Soren Hansen, Logan Rosen, Chuck Short
  • Date: 2012-09-07 13:04:01 UTC
  • mfrom: (1.1.22)
  • Revision ID: package-import@ubuntu.com-20120907130401-o49wh9xxkr2cmuqx
Tags: 2012.2~rc1~20120906.2517-0ubuntu2
[ Adam Gandelman ]
* Refreshed patches.

[ Soren Hansen ]
* Update debian/watch to account for symbolically named tarballs and
  use newer URL.
* Fix Launchpad URLs in debian/watch.

[ Logan Rosen ]
* Fix control file to suggest python-memcache instead of python-memcached
  (LP: #998991).

[ Chuck Short ]
* New upstream version.
* Dont FTBFS if the testsuite fails.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
from nose import core
67
67
from nose import result
68
68
 
69
 
from keystone.common.sql import util
70
 
 
71
69
 
72
70
class _AnsiColorizer(object):
73
71
    """
139
137
            'magenta': red | blue | bold,
140
138
            'cyan': green | blue | bold,
141
139
            'white': red | green | blue | bold
142
 
            }
 
140
        }
143
141
 
144
142
    def supported(cls, stream=sys.stdout):
145
143
        try:
350
348
            do_monkeypatch = False
351
349
        else:
352
350
            argv.append(x)
353
 
    if do_monkeypatch:
354
 
        eventlet.patcher.monkey_patch(all=False, socket=True, time=True,
355
 
                                       thread=True)
 
351
    eventlet.patcher.monkey_patch(all=False, socket=True, time=True,
 
352
                                  thread=do_monkeypatch)
356
353
    testdir = os.path.abspath(os.path.join("tests"))
357
354
    c = config.Config(stream=sys.stdout,
358
355
                      env=os.environ,