Browse Source
Explicitly install pytest-network in test-module in case underlying module doesn't include it
pull/951/head
Ross McFarland
3 years ago
No known key found for this signature in database
GPG Key ID: 943B179E15D3B22A
1 changed files with
1 additions and
1 deletions
-
script/test-module
|
|
|
@ -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 |
|
|
|
|