Skip to content

Commit 31a962a

Browse files
committed
TST: added html5lib,bs4 to ALL DEPS installs on travis
1 parent 08b7240 commit 31a962a

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

ci/install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ if ( ! $VENV_FILE_AVAILABLE ); then
7777
pip install $PIP_ARGS patsy
7878
pip install $PIP_ARGS lxml
7979
pip install $PIP_ARGS beautifulsoup4
80+
pip install $PIP_ARGS html5lib
8081

8182
# fool statsmodels into thinking pandas was already installed
8283
# so it won't refuse to install itself. We want it in the zipped venv

ci/print_versions.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,23 @@
103103
except:
104104
print("sqlalchemy: Not installed")
105105

106+
try:
107+
import lxml
108+
from lxml import etree
109+
print("lxml: %s" % etree.__version__)
110+
except:
111+
print("lxml: Not installed")
112+
113+
try:
114+
import bs4
115+
print("bs4: %s" % bs4.__version__)
116+
except:
117+
print("bs4: Not installed")
118+
119+
try:
120+
import html5lib
121+
print("html5lib: %s" % html5lib.__version__)
122+
except:
123+
print("html5lib: Not installed")
124+
106125
print("\n")

0 commit comments

Comments
 (0)