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 424b0ee commit d884867Copy full SHA for d884867
djclick/test/test_adapter.py
@@ -31,7 +31,7 @@ def test_not_ascii():
31
try:
32
preferred_encoding = locale.getpreferredencoding()
33
fs_enc = codecs.lookup(preferred_encoding).name
34
- except Exception:
+ except Exception: # NOCOV
35
fs_enc = 'ascii'
36
assert fs_enc != 'ascii'
37
djclick/test/testprj/testapp/management/commands/helpcmd.py
@@ -4,4 +4,4 @@
4
@click.command()
5
def command():
6
# Just print some things which shall not be found in the output
7
- click.echo('HELP_CALLED')
+ click.echo('HELP_CALLED') # NOCOV
0 commit comments