We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7688ec8 commit 85c20e9Copy full SHA for 85c20e9
tools/github_actions_dependencies.sh
@@ -49,8 +49,15 @@ echo ""
49
# until quantities releases...
50
STD_ARGS="$STD_ARGS git+https://github.com/python-quantities/python-quantities"
51
52
+# Make sure we only pass non-empty groups argument
53
+if [ -z "$GROUP" ]; then
54
+ GROUP_ARG=""
55
+else
56
+ GROUP_ARG="--group=$GROUP"
57
+fi
58
+
59
echo "::group::Installing test dependencies using pip"
60
set -x
-python -m pip install $STD_ARGS $INSTALL_ARGS .$EXTRAS --group=$GROUP
61
+python -m pip install $STD_ARGS $INSTALL_ARGS .$EXTRAS $GROUP_ARG
62
set +x
63
echo "::endgroup::"
0 commit comments