You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2013/01/28 05:56:10 UTC

svn commit: r1439251 - /libcloud/trunk/setup.py

Author: tomaz
Date: Mon Jan 28 04:56:10 2013
New Revision: 1439251

URL: http://svn.apache.org/viewvc?rev=1439251&view=rev
Log:
See if upgraded mock library on buildslave solves this issue.

Modified:
    libcloud/trunk/setup.py

Modified: libcloud/trunk/setup.py
URL: http://svn.apache.org/viewvc/libcloud/trunk/setup.py?rev=1439251&r1=1439250&r2=1439251&view=diff
==============================================================================
--- libcloud/trunk/setup.py (original)
+++ libcloud/trunk/setup.py Mon Jan 28 04:56:10 2013
@@ -131,9 +131,6 @@ class TestCommand(Command):
         testfiles = []
         for test_path in TEST_PATHS:
             for t in glob(pjoin(self._dir, test_path, 'test_*.py')):
-                if pre_python26 and 'test_ssh_client' in t:
-                    # TODO: Need to update mock library on buildslave
-                    continue
                 testfiles.append('.'.join(
                     [test_path.replace('/', '.'), splitext(basename(t))[0]]))