| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 30c0dcb commit f2709c3
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,22 +4,22 @@ set -x | |||
| 4 | 4 | ||
| 5 | 5 | pip install setuptools | |
| 6 | 6 | ||
| 7 | - if [[ $RUN == nosetests ]] then | ||
| 7 | + if [[ $RUN == nosetests ]]; then | ||
| 8 | 8 | # core dependencies | |
| 9 | 9 | pip install pygments requests 'curtsies >=0.1.16,<0.2.0' greenlet | |
| 10 | 10 | # filewatch specific dependencies | |
| 11 | 11 | pip install watchdog | |
| 12 | 12 | # translation specific dependencies | |
| 13 | 13 | pip install babel | |
| 14 | 14 | # Python 2.6 specific dependencies | |
| 15 | - if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]] then | ||
| 15 | + if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then | ||
| 16 | 16 | pip install unittest | |
| 17 | 17 | fi | |
| 18 | 18 | # dependencies for crasher tests | |
| 19 | 19 | pip install Twisted urwid | |
| 20 | 20 | # build and install | |
| 21 | 21 | python setup.py install | |
| 22 | - elif [[ $RUN == build_sphinx ]] then | ||
| 22 | + elif [[ $RUN == build_sphinx ]]; then | ||
| 23 | 23 | # documentation specific dependencies | |
| 24 | 24 | pip install sphinx | |
| 25 | 25 | fi | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,10 +2,10 @@ | |||
| 2 | 2 | set -e | |
| 3 | 3 | set -x | |
| 4 | 4 | ||
| 5 | - if [[ $RUN == build_sphinx ]] then | ||
| 5 | + if [[ $RUN == build_sphinx ]]; then | ||
| 6 | 6 | python setup.py build_sphinx | |
| 7 | 7 | python setup.py build_sphinx_man | |
| 8 | - elif [[ $RUN == nosetests ]] then | ||
| 8 | + elif [[ $RUN == nosetests ]]; then | ||
| 9 | 9 | cd build/lib/ | |
| 10 | 10 | nosetests -v bpython/test | |
| 11 | 11 | fi | |
| Back | FazBrowse Home | New Git URL |
0 commit comments