From 504530aee20f097af4c004f562a11e8e41cdb62d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Corbin?= Date: Mon, 12 Aug 2019 18:32:39 +0200 Subject: [PATCH] Remove skipif error --- tests/test_filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_filters.py b/tests/test_filters.py index b9c777a17..eb18b8e25 100644 --- a/tests/test_filters.py +++ b/tests/test_filters.py @@ -701,7 +701,7 @@ if postgres_fields: fields = '__all__' -@pytest.mark.skipif(postgres_fields is None) +@pytest.mark.skipif(postgres_fields is None, reason='not a postgresql database') class JSONOrderingFilterTests(TestCase): def test_order_by_json_field(self):