From b48d7ec3c053b66c40a04bccd380068ae59baaff Mon Sep 17 00:00:00 2001 From: Stef Bastiaansen Date: Fri, 10 Jun 2016 11:45:37 +0200 Subject: [PATCH] Mark the search_response_is_a_list test as slow --- biblio/tests/test_api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/biblio/tests/test_api.py b/biblio/tests/test_api.py index 3f5fa5b..b6819dc 100644 --- a/biblio/tests/test_api.py +++ b/biblio/tests/test_api.py @@ -32,6 +32,7 @@ def test_valid_response(self): assert 200 == response.status_code assert 'application/json; charset=utf-8' == response.headers['content-type'] + @pytest.mark.slow def test_search_response_is_a_list(self): assert isinstance(search('111'), list)