Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FSL
fslpy
Commits
1e3a470d
Commit
1e3a470d
authored
May 31, 2018
by
Paul McCarthy
🚵
Browse files
CI: Make pip retry failed downloads.
parent
b0a2c67f
Changes
1
Hide whitespace changes
Inline
Side-by-side
.ci/test_template.sh
View file @
1e3a470d
...
...
@@ -14,12 +14,12 @@ fi;
source
/test.venv/bin/activate
pip
install
-r
requirements.txt
pip
install
-r
requirements-extra.txt
pip
install
-r
requirements-dev.txt
pip
install
--retries
10
-r
requirements.txt
pip
install
--retries
10
-r
requirements-extra.txt
pip
install
--retries
10
-r
requirements-dev.txt
# style stage
if
[
"
$TEST_STYLE
"
x
!=
"x"
]
;
then
pip
install
pylint flake8
;
fi
;
if
[
"
$TEST_STYLE
"
x
!=
"x"
]
;
then
pip
install
--retries
10
pylint flake8
;
fi
;
if
[
"
$TEST_STYLE
"
x
!=
"x"
]
;
then
flake8 fsl
||
true
;
fi
;
if
[
"
$TEST_STYLE
"
x
!=
"x"
]
;
then
pylint
--output-format
=
colorized fsl
||
true
;
fi
;
if
[
"
$TEST_STYLE
"
x
!=
"x"
]
;
then
exit
0
;
fi
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment