From 927ca1e8bcb618c3ed5bcf0b63f67e5554bf527a Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Sun, 16 Oct 2022 17:46:23 -0700 Subject: [PATCH] Revert back to .[dev], .[test] is not (yet) universally a thing --- script/test-module | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/script/test-module b/script/test-module index 3c6237d..df61a7d 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 test requirements #############################################" +echo "## install module dev requirements #############################################" if [ -e setup.py ]; then - pip install -e .[test] pytest-network + pip install -e .[dev] pytest-network elif [ -f pyproject.toml ]; then # install poetry pip install poetry @@ -38,6 +38,8 @@ else echo "Unrecognized module management. Supports setup.py and poetry" exit 1 fi +echo "## installed modules ###########################################################" +pip freeze echo "## run module tests ############################################################" export PYTHONPATH=.:$PYTHONPATH if [ -e setup.py ]; then