1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
From: Ole Streicher <olebole@debian.org>
Date: Fri, 25 Feb 2022 12:48:15 +0100
Subject: Disable test of non-built standard docs
---
tests/test_docs.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/test_docs.py b/tests/test_docs.py
index fa42cd3..dd7de2a 100644
--- a/tests/test_docs.py
+++ b/tests/test_docs.py
@@ -1,4 +1,5 @@
import collections
+import pytest
from common import is_deprecated
@@ -19,7 +20,7 @@ EXCEPTIONS = {
"http://stsci.edu/schemas/asdf/asdf-schema-1.1.0",
}
-
+@pytest.mark.skip(reason="We don't package documentation yet")
def test_docs_schema_links(
latest_schema_ids, legacy_schema_ids, manifest_ids, docs_schema_ids, docs_legacy_schema_ids, docs_manifest_ids
):
|