Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix warning about invalid format in pip list #4380

Merged
merged 4 commits into from
Oct 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ Fixed
is checked out). (improvement) #4366
* st2 login now exits with non zero exit code when login fails due to invalid credentials.
(improvement) #4338
* Fix ``st2 key load`` that errors when importing an empty file #4393
* Fix ``st2 key load`` that errors when importing an empty file #43
* Fixed warning in ``st2-run-pack-tests`` about invalid format for ``pip list``. (bug fix)

Contributed by Nick Maludy (Encore Technologies). #4380

2.9.0 - September 16, 2018
--------------------------
Expand Down
2 changes: 1 addition & 1 deletion st2common/bin/st2-run-pack-tests
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ if [ "${JUST_TESTS}" = false ]; then
fi

# Install global test dependencies
INSTALLED_PIP_PACKAGES=$(pip list --format legacy)
INSTALLED_PIP_PACKAGES=$(pip list --format freeze)

echo "Installing global pack test dependencies..."
for((i = 0; i < ${#PACK_TEST_PYTHON_DEPENDENCIES_NAMES[@]}; i++)); do
Expand Down