diff --git a/ckanext/resourcedictionary/tests/views/test_resource_dictionary.py b/ckanext/resourcedictionary/tests/views/test_resource_dictionary.py index 9c7c5f4..9981d15 100644 --- a/ckanext/resourcedictionary/tests/views/test_resource_dictionary.py +++ b/ckanext/resourcedictionary/tests/views/test_resource_dictionary.py @@ -7,8 +7,7 @@ from ckan.lib.helpers import url_for -@pytest.mark.usefixtures(u'clean_db', u'clean_index', - u'clean_datastore',) +@pytest.mark.usefixtures(u'clean_db', u'clean_index') def test_create_new_resource_dictionary_successfully(app): user = factories.Sysadmin() diff --git a/conftest.py b/conftest.py index c6363e8..fae1fc4 100644 --- a/conftest.py +++ b/conftest.py @@ -1,7 +1,6 @@ # -*- coding: utf-8 -*- pytest_plugins = [ - u'ckanext.datastore.tests.conftest', u'ckan.tests.pytest_ckan.ckan_setup', u'ckan.tests.pytest_ckan.fixtures', ]