diff --git a/UltiSnips/python.snippets b/UltiSnips/python.snippets index 67e046f..a46720a 100644 --- a/UltiSnips/python.snippets +++ b/UltiSnips/python.snippets @@ -40,3 +40,7 @@ endsnippet snippet af "Assert false" self.assertFalse(${1:condition}) endsnippet + +snippet nocover "Remove the block from the coverage" +# pragma: no cover +endsnippet