From 436463e7874524b21d70bdd9bb2be8bae1d3441c Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Tue, 18 Dec 2007 00:53:27 -0800 Subject: Add more testcases, and add coverage exclusion notations on places where we do test the the content functions already, or they interact with the system too much to test for coverage automatically. --- gitosis/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gitosis/util.py') diff --git a/gitosis/util.py b/gitosis/util.py index 83f66d4..2da4168 100644 --- a/gitosis/util.py +++ b/gitosis/util.py @@ -29,7 +29,7 @@ def _sysfunc(func, ignore, *args, **kwds): Run the specified function, ignoring the specified errno if raised, and raising other errors. """ - if not ignore: + if not ignore: # pragma: no cover ignore = [] try: func(*args, **kwds) -- cgit v1.2.3