Test importing bs4 in the build tests as well

This commit is contained in:
Kovid Goyal
2019-04-13 10:11:02 +05:30
parent e0d33736f3
commit c8509ffcf2
+3 -3
View File
@@ -73,9 +73,9 @@ class BuildTest(unittest.TestCase):
from html5_parser import parse
parse('<p>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()