File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 44
55pip install setuptools
66
7- if [[ $RUN == nosetests ]] then
7+ if [[ $RUN == nosetests ]]; then
88 # core dependencies
99 pip install pygments requests ' curtsies >=0.1.16,<0.2.0' greenlet
1010 # filewatch specific dependencies
1111 pip install watchdog
1212 # translation specific dependencies
1313 pip install babel
1414 # Python 2.6 specific dependencies
15- if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]] then
15+ if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then
1616 pip install unittest
1717 fi
1818 # dependencies for crasher tests
1919 pip install Twisted urwid
2020 # build and install
2121 python setup.py install
22- elif [[ $RUN == build_sphinx ]] then
22+ elif [[ $RUN == build_sphinx ]]; then
2323 # documentation specific dependencies
2424 pip install sphinx
2525fi
Original file line number Diff line number Diff line change 22set -e
33set -x
44
5- if [[ $RUN == build_sphinx ]] then
5+ if [[ $RUN == build_sphinx ]]; then
66 python setup.py build_sphinx
77 python setup.py build_sphinx_man
8- elif [[ $RUN == nosetests ]] then
8+ elif [[ $RUN == nosetests ]]; then
99 cd build/lib/
1010 nosetests -v bpython/test
1111fi
You can’t perform that action at this time.
0 commit comments