Explicitly install pytest-network in test-module in case underlying module doesn't include it

This commit is contained in:
Ross McFarland
2022-10-16 17:16:56 -07:00
parent 7d7cf49522
commit 3125d1f7aa
+1 -1
View File
@@ -26,7 +26,7 @@ git clone "https://github.com/${module}.git"
cd $(basename $module)
echo "## install module test requirements #############################################"
if [ -e setup.py ]; then
pip install -e .[test]
pip install -e .[test] pytest-network
elif [ -f pyproject.toml ]; then
# install poetry
pip install poetry