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 52b680e commit 43834e8Copy full SHA for 43834e8
dev/before_install
@@ -30,7 +30,7 @@ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
30
# Bitkeeper install failure is not critical, so exit code is not checked.
31
sudo ./dev/install-bitkeeper.sh
32
33
- sudo ./dev/install-python-packages.sh
+ sudo -H ./dev/install-python-packages.sh
34
if [[ $? != 0 ]]; then
35
echo "cannot install Python packages"
36
exit 1
dev/install-python-packages.sh
@@ -1,7 +1,9 @@
1
#!/bin/bash
2
3
+echo "Installing/upgrading pip.."
4
python3 -m pip install --upgrade pip
5
6
+echo "Installing Python packages.."
7
python3 -m pip install pep8 virtualenv
8
9
0 commit comments