Skip to content
This repository was archived by the owner on Jun 29, 2019. It is now read-only.

Commit 8578d84

Browse files
committed
Fixing syntax error in travis config file
1 parent 9b03ae6 commit 8578d84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ python:
66
- 3.3
77
install:
88
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
9-
- if [[ $TRAVIS_PYTHON_VERSION <= '2.7' ]]; then pip install python-memcached; else pip install python3-memcached; fi
9+
- if [ $TRAVIS_PYTHON_VERSION == '2.6' ] || [ $TRAVIS_PYTHON_VERSION == '2.7' ]; then pip install python-memcached; else pip install python3-memcached; fi
1010
- pip install -r requirements-dev.txt --use-mirrors
1111
script: nosetests

0 commit comments

Comments
 (0)