Skip to content

Commit

Permalink
Fix bash syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
csojinb-picwell committed Apr 13, 2015
1 parent 068583e commit 1caee9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: python
sudo: false
before_install: if [ "$JYTHON" = "true" ]; then travis_scripts/install_jython2.7.sh; fi
install: if [ "$JYTHON" = "true" ]; then pip install -r tools/test-requires; else; pip install tox coveralls --use-mirrors; fi
install: if [ "$JYTHON" = "true" ]; then pip install -r tools/test-requires; else pip install tox coveralls --use-mirrors; fi
env:
- TOX_ENV=py26
- TOX_ENV=py27
Expand All @@ -18,7 +18,7 @@ env:
- TOX_ENV=py27_smoke_cython
- JYTHON=true

script: if [ "$JYTHON" = "true" ]; then nosetests; else; tox -e $TOX_ENV; fi
script: if [ "$JYTHON" = "true" ]; then nosetests; else tox -e $TOX_ENV; fi
after_success: coveralls
notifications:
email:
Expand Down

0 comments on commit 1caee9d

Please sign in to comment.