From 720d9847a056e4d3e5473b94cd00bb4c4c3663fb Mon Sep 17 00:00:00 2001 From: noah morrison Date: Wed, 29 Apr 2015 22:31:29 -0400 Subject: [PATCH] Ignore import json path for coverage --- .coveragerc | 1 + chevron/main.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.coveragerc b/.coveragerc index eb4cf28..e8db2a5 100644 --- a/.coveragerc +++ b/.coveragerc @@ -4,3 +4,4 @@ exclude_lines = def cli_main \# python 2 + \# not tested diff --git a/chevron/main.py b/chevron/main.py index 5f11f50..8da3fd7 100755 --- a/chevron/main.py +++ b/chevron/main.py @@ -2,7 +2,7 @@ try: import yaml as json -except ImportError: +except ImportError: # not tested import json # -- 2.47.3