From 3125d1f7aa2d6877a928521181fb8d30b8f9255f Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Sun, 16 Oct 2022 17:16:56 -0700 Subject: [PATCH] Explicitly install pytest-network in test-module in case underlying module doesn't include it --- script/test-module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/test-module b/script/test-module index 16d9fc6..3c6237d 100755 --- a/script/test-module +++ b/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