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
parent
commit
3125d1f7aa
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      script/test-module

+ 1
- 1
script/test-module 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


Loading…
Cancel
Save