Skip to content

Commit b4944df

Browse files
committed
[ci] Fix the version of nose-timer for Python 2.6
1 parent 56b649f commit b4944df

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

scripts/travis.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,17 @@ travis_test_install() {
6969

7070
# For testing/code coverage.
7171
case "$TRAVIS_PYTHON_VERSION" in
72+
2.6)
73+
travis_retry pip install coverage nose-timer==0.7.0
74+
;;
7275
3.2)
73-
travis_retry pip install coverage==3.7.1
76+
travis_retry pip install coverage==3.7.1 nose-timer
7477
;;
7578
*)
76-
travis_retry pip install coverage
79+
travis_retry pip install coverage nose-timer
7780
;;
7881
esac
79-
travis_retry pip install coveralls rednose nose-timer
82+
travis_retry pip install coveralls rednose
8083
}
8184

8285
travis_test_script() {

0 commit comments

Comments
 (0)