From 5397fb16d48246379979b0f74bc63b5342375ec6 Mon Sep 17 00:00:00 2001 From: duskobogdanovski Date: Fri, 5 Mar 2021 18:19:41 +0100 Subject: [PATCH] Remove test fixture --- .../resourcedictionary/tests/views/test_resource_dictionary.py | 3 +-- conftest.py | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) 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', ]