1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 12:45:20 +03:00
aports/community/py3-jsonschema/skip-license-test.patch

21 lines
710 B
Diff

diff --git a/jsonschema/tests/test_cli.py b/jsonschema/tests/test_cli.py
index 6d42af6..c8824fd 100644
--- a/jsonschema/tests/test_cli.py
+++ b/jsonschema/tests/test_cli.py
@@ -3,7 +3,7 @@ from io import StringIO
from json import JSONDecodeError
from pathlib import Path
from textwrap import dedent
-from unittest import TestCase
+from unittest import TestCase, SkipTest
import json
import os
import subprocess
@@ -885,6 +885,7 @@ class TestParser(TestCase):
class TestCLIIntegration(TestCase):
def test_license(self):
+ raise SkipTest("x")
output = subprocess.check_output(
[sys.executable, "-m", "pip", "show", "jsonschema"],
stderr=subprocess.STDOUT,