• Kirill Smelkov's avatar
    tox: ZODB5.test.util needs mock · 6b5384ae
    Kirill Smelkov authored
    Dependency added here:
    
    	https://github.com/zopefoundation/ZODB/commit/e0bc8bd567
    
    If we don't provide mock, e.g. py27-ZODB5-*-zeo-* breaks:
    
    	    def setup_module():
    	        global testdb
    	>       testdb = getTestDB()
    
    	bigarray/tests/test_arrayzodb.py:38:
    	_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
    	.tox/py27-ZODB5-zblk1-zeo-numpy115/lib/python2.7/site-packages/wendelin/lib/testing.py:342: in getTestDB
    	    testdb = testdb_factory(testdb_uri)
    	.tox/py27-ZODB5-zblk1-zeo-numpy115/lib/python2.7/site-packages/wendelin/lib/testing.py:245: in __init__
    	    from ZEO.tests import forker
    	.tox/py27-ZODB5-zblk1-zeo-numpy115/lib/python2.7/site-packages/ZEO/tests/forker.py:29: in <module>
    	    import ZODB.tests.util
    	_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
    
    	    """
    	    from ZODB.MappingStorage import DB
    
    	    import atexit
    	    import os
    	    import persistent
    	    import re
    	    import tempfile
    	    import time
    	    import transaction
    	    import unittest
    	    import warnings
    	    import ZODB.utils
    	    from ZODB.Connection import TransactionMetaData
    	    import zope.testing.setupstack
    	    from zope.testing import renormalizing
    
    	    try:
    	        from unittest import mock
    	    except ImportError:
    	>       import mock
    	E       ImportError: No module named mock
    
    	.tox/py27-ZODB5-zblk1-zeo-numpy115/lib/python2.7/site-packages/ZODB/tests/util.py:35: ImportError
    6b5384ae
tox.ini 1.65 KB