1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

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

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