Browse Source

Install test requirements, not dev in test-module

pull/951/head
Ross McFarland 3 years ago
parent
commit
7d7cf49522
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      script/test-module

+ 2
- 2
script/test-module View File

@ -24,9 +24,9 @@ echo "## checkout provider module ##############################################
cd $TMP_DIR
git clone "https://github.com/${module}.git"
cd $(basename $module)
echo "## install module dev requirements #############################################"
echo "## install module test requirements #############################################"
if [ -e setup.py ]; then
pip install -e .[dev]
pip install -e .[test]
elif [ -f pyproject.toml ]; then
# install poetry
pip install poetry


Loading…
Cancel
Save