summaryrefslogtreecommitdiff
path: root/prepare-release.sh
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2022-04-10 13:42:02 -0400
committerLeonard Richardson <leonardr@segfault.org>2022-04-10 13:42:02 -0400
commit92b50fc6ae57038a09e9cace20604613b1b345e8 (patch)
treee695bca9b85d605272dee2128ffd4fe69af4b0d5 /prepare-release.sh
parentbae2e2ca3565a75fcff1d2bc911f0a2e022761b4 (diff)
Fixed another crash when overriding multi_valued_attributes and using the
html5lib parser. [bug=1948488]
Diffstat (limited to 'prepare-release.sh')
-rw-r--r--prepare-release.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/prepare-release.sh b/prepare-release.sh
index 29604a2..dc6054f 100644
--- a/prepare-release.sh
+++ b/prepare-release.sh
@@ -26,7 +26,7 @@ python3 setup.py sdist bdist_wheel
rm -rf ../py3-install-test-virtualenv
virtualenv -p /usr/bin/python3 ../py3-install-test-virtualenv
source ../py3-install-test-virtualenv/bin/activate
-pip install dist/beautifulsoup4-*.whl lxml html5lib
+pip install dist/beautifulsoup4-*.whl pytest lxml html5lib soupsieve
pytest ../py3-install-test-virtualenv/lib/python3.8/site-packages/bs4/tests/
echo "EXPECT HTML ON LINE BELOW"
(cd .. && python -c "from bs4 import _s; print(_s('<a>foo', 'html.parser'))")