From 7d7cf49522036efc052cbfbb4850089b23bbe427 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Sun, 16 Oct 2022 17:16:22 -0700 Subject: [PATCH] Install test requirements, not dev in test-module --- script/test-module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/test-module b/script/test-module index 1a22408..16d9fc6 100755 --- a/script/test-module +++ b/script/test-module @@ -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