Skip to content
Merged
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: 5 additions & 0 deletions .kokoro/tests/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ export PATH="${HOME}/.local/bin:${PATH}"
# upgrade pip when needed
pip install --upgrade pip

# Install virtualenv in version 20.21, since version 20.22 no longer supports Python 2.7
if [[ "${RUN_TESTS_SESSION}" == "py-2.7" ]]; then
pip install --user -q virtualenv==20.21
fi

# install nox for testing
pip install --user -q nox

Expand Down