From 420aadd95efc176e23438c99c58b32d22cf4b505 Mon Sep 17 00:00:00 2001 From: david-sarah Date: Tue, 18 Jan 2011 12:51:14 -0800 Subject: [PATCH] Make 'mock' a run-time rather than setup-time dependency. This is necessary in order for 'tahoe debug trial' to work. refs #1296 --- setup.py | 8 +++----- src/allmydata/_auto_deps.py | 3 +++ 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 65426e0e..8c48e18d 100644 --- a/setup.py +++ b/setup.py @@ -169,11 +169,9 @@ if "--reporter=bwverbose-coverage" in sys.argv: if "sdist_dsc" in sys.argv: setup_requires.append('stdeb >= 0.3') -tests_require=[ - # Mock - Mocking and Testing Library - # http://www.voidspace.org.uk/python/mock/ - "mock", - ] +# We no longer have any requirements specific to tests. +tests_require=[] + class ShowSupportLib(Command): user_options = [] diff --git a/src/allmydata/_auto_deps.py b/src/allmydata/_auto_deps.py index ba450f9b..9e9ff69a 100644 --- a/src/allmydata/_auto_deps.py +++ b/src/allmydata/_auto_deps.py @@ -30,6 +30,9 @@ install_requires=[ "pycrypto == 2.0.1, == 2.1, >= 2.3", "pyasn1 >= 0.0.8a", + # http://www.voidspace.org.uk/python/mock/ + "mock", + # Will be needed to test web apps, but not yet. See #1001. #"windmill >= 1.3", ] -- 2.45.2