From 578bccf3bbe584ceaba01a37184bb8ad11763866 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Chaves?= Date: Tue, 9 Jul 2019 12:33:07 +0200 Subject: [PATCH] Skip scrapy.exceptions.UsageError in the documentation coverage report --- docs/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 61d5b9600..80b8e3e90 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -246,4 +246,7 @@ coverage_ignore_pyobjects = [ # Base classes of downloader middlewares are implementation details that # are not meant for users. r'^scrapy\.downloadermiddlewares\.\w*?\.Base\w*?Middleware', + + # Private exception used by the command-line interface implementation. + r'^scrapy\.exceptions\.UsageError', ]