1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
From: Ole Streicher <olebole@debian.org>
Date: Tue, 8 Aug 2023 15:03:42 +0200
Subject: Unconditionally don't run jsonschema test
---
asdf/_jsonschema/conftest.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/asdf/_jsonschema/conftest.py b/asdf/_jsonschema/conftest.py
index 7455609..99f3076 100644
--- a/asdf/_jsonschema/conftest.py
+++ b/asdf/_jsonschema/conftest.py
@@ -6,5 +6,4 @@ collect_ignore_glob = []
def pytest_configure(config):
- if not config.option.jsonschema:
collect_ignore_glob.append("*")
|