python-click/debian/patches/skip_test_legacy_callbacks.patch
2017-07-19 14:22:14 -04:00

18 lines
433 B
Diff

Description: Temporarily skip test_legacy_callbacks
Bug: 868816
Forwarded: https://github.com/pallets/click/issues/823
Author: Alexandre Viau <aviau@debian.org>
Last-Update: 2017-07-19
--- a/tests/test_compat.py
+++ b/tests/test_compat.py
@@ -1,7 +1,7 @@
import click
-if click.__version__ >= '3.0':
+if False:
def test_legacy_callbacks(runner):
def legacy_callback(ctx, value):
return value.upper()