We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da7e727 commit 9705931Copy full SHA for 9705931
tests/test_parser_completers.py
@@ -5,6 +5,7 @@
5
from decimal import Decimal
6
from io import StringIO
7
from pathlib import Path
8
+import pytest
9
10
from django.apps import apps
11
from django.core.management import CommandError, call_command
@@ -919,6 +920,9 @@ def test_decimal_field(self):
919
920
},
921
)
922
923
+ @pytest.mark.skip(
924
+ reason="these tests are broken for typer 0.13-0.14, TODO: fix in 3.0"
925
+ )
926
def test_option_complete(self):
927
result = StringIO()
928
with contextlib.redirect_stdout(result):
0 commit comments