From 064499c9260837e5394b5388830a80b17ed7f6f2 Mon Sep 17 00:00:00 2001 From: David Read Date: Thu, 10 Feb 2011 17:20:50 +0000 Subject: [PATCH] [setup,tests]: #682 ckanclient improvements. --- ckan/tests/__init__.py | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ckan/tests/__init__.py b/ckan/tests/__init__.py index da2467e1652..0e20d9dc006 100644 --- a/ckan/tests/__init__.py +++ b/ckan/tests/__init__.py @@ -273,6 +273,7 @@ def _recreate_ckan_server_testdata(cls, config_path): cls._paster('db clean', config_path) cls._paster('db init', config_path) cls._paster('create-test-data', config_path) + cls._paster('search-index rebuild', config_path) @staticmethod def _start_ckan_server(config_file=None): diff --git a/setup.py b/setup.py index 32440df67e3..068d2570224 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ install_requires=[ 'routes>=1.9,<=1.11.99', 'vdm>=0.9,<0.9.99', - 'ckanclient>=0.1,<0.6.99', + 'ckanclient>=0.1,<0.7.99', 'Pylons>=0.9.7.0,<0.9.7.99', 'Genshi>=0.6,<0.6.99', 'SQLAlchemy>=0.6,<0.6.99',