From c8509ffcf217fc827efb3795a31cffe8382ea199 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 13 Apr 2019 10:11:02 +0530 Subject: [PATCH] Test importing bs4 in the build tests as well --- src/calibre/test_build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/test_build.py b/src/calibre/test_build.py index 0ba6e07b9a..b96d0f6a8a 100644 --- a/src/calibre/test_build.py +++ b/src/calibre/test_build.py @@ -73,9 +73,9 @@ class BuildTest(unittest.TestCase): from html5_parser import parse parse('

xxx') - def test_soupsieve(self): - import soupsieve - del soupsieve + def test_bs4(self): + import soupsieve, bs4 + del soupsieve, bs4 def test_plugins(self): exclusions = set()