summaryrefslogtreecommitdiff
path: root/tests/test_basic_api.py
diff options
context:
space:
mode:
authorGeorg Brandl <g.brandl@fz-juelich.de>2019-12-09 12:32:47 +0100
committerGeorg Brandl <g.brandl@fz-juelich.de>2019-12-09 12:32:47 +0100
commit09ef9a63ff67790f14bf3201b7e548bffe602723 (patch)
tree1843a7990b980ddbf92c3019ad2a191f4790b3d9 /tests/test_basic_api.py
parentda310ba1bf547202dcc8224a9f2ce102aa926abf (diff)
downloadpygments-git-09ef9a63ff67790f14bf3201b7e548bffe602723.tar.gz
tests: remove special skip cases for random_input test case
Diffstat (limited to 'tests/test_basic_api.py')
-rw-r--r--tests/test_basic_api.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_basic_api.py b/tests/test_basic_api.py
index 99d56bb5..7d08c05e 100644
--- a/tests/test_basic_api.py
+++ b/tests/test_basic_api.py
@@ -64,9 +64,6 @@ def test_lexer_classes(cls):
@pytest.mark.parametrize('cls', lexers._iter_lexerclasses(plugins=False))
def test_random_input(cls):
- if cls.name in ['XQuery', 'Opa', 'Zephir']: # XXX temporary
- return
-
inst = cls()
try:
tokens = list(inst.get_tokens(test_content))