forked from iterative/dvc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trying to fix azure error on our ci: https://travis-ci.com/iterative/dvc/jobs/224085273 Workaround for iterative#2387 Signed-off-by: Ruslan Kuprieiev <[email protected]>
- Loading branch information
Showing
3 changed files
with
18 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,12 @@ scriptdir="$(dirname $0)" | |
# work or not. | ||
$scriptdir/retry.sh pip install --upgrade pip setuptools wheel | ||
$scriptdir/retry.sh pip install .[all,tests] | ||
$scriptdir/retry.sh pip install psutil | ||
# Installing specific packages to workaround some bugs. Please see [1] and [2] | ||
# | ||
# [1] https://github.com/iterative/dvc/issues/2284 | ||
# [2] https://github.com/iterative/dvc/issues/2387 | ||
$scriptdir/retry.sh pip uninstall -y azure-storage-blob | ||
$scriptdir/retry.sh pip install psutil azure-storage-blob==1.5.0 | ||
|
||
git config --global user.email "[email protected]" | ||
git config --global user.name "DVC Tester" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters