From 126e3fd01b93525d80975d586c373ba0ed2ddadf Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 7 Aug 2016 10:42:37 +0200 Subject: [PATCH] tests: Add webkitinspector.py to WHITELISTED_FILES When running with --no-xvfb, this file has 100% coverage due to the inspector tests in misc.feature. See #1771. --- scripts/dev/check_coverage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/check_coverage.py b/scripts/dev/check_coverage.py index 457f472ba..c8db7e03e 100644 --- a/scripts/dev/check_coverage.py +++ b/scripts/dev/check_coverage.py @@ -155,7 +155,7 @@ PERFECT_FILES = [ # 100% coverage because of end2end tests, but no perfect unit tests yet. -WHITELISTED_FILES = [] +WHITELISTED_FILES = ['qutebrowser/browser/webkit/webkitinspector.py'] class Skipped(Exception):