From 2045f6f16afbe3ec8d13983c33f3fc81f663eb13 Mon Sep 17 00:00:00 2001 From: Stefano Fiorucci Date: Tue, 29 Oct 2024 16:21:51 +0100 Subject: [PATCH] try test jsonschema (#8496) --- test/conftest.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/conftest.py b/test/conftest.py index 3786061a7..a7282be64 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -88,11 +88,3 @@ def spying_tracer() -> Generator[SpyingTracer, None, None]: # Make sure to disable tracing after the test to avoid affecting other tests tracing.disable_tracing() - - -# Collecting this test is causing issues when running tests in CI -# as it's indirectly importing jsonschema which for some reason -# is causing collection to fail. -# See this issue: -# https://github.com/python-jsonschema/jsonschema/issues/1236 -collect_ignore = ["components/validators/test_json_schema.py"]