]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
skipping one more orjson test
authorsvlandeg <svlandeg@github.com>
Wed, 22 Oct 2025 13:04:39 +0000 (15:04 +0200)
committersvlandeg <svlandeg@github.com>
Wed, 22 Oct 2025 13:04:39 +0000 (15:04 +0200)
tests/test_orjson_response_class.py

index 6fe62daf97b4e023e5879d5ef292a7a8ceb7612d..18a33bec3b390ce2f3a4c5b399267f77026fc26f 100644 (file)
@@ -1,3 +1,5 @@
+import pytest
+
 from fastapi import FastAPI
 from fastapi.responses import ORJSONResponse
 from fastapi.testclient import TestClient
@@ -15,6 +17,7 @@ def get_orjson_non_str_keys():
 client = TestClient(app)
 
 
+@pytest.mark.skip(reason="skipping orjson tests")
 def test_orjson_non_str_keys():
     with client:
         response = client.get("/orjson_non_str_keys")