Skip to content

Commit

Permalink
Use bash commands grouping with parentheses instead pushd/popd
Browse files Browse the repository at this point in the history
  • Loading branch information
rutsky committed Oct 19, 2013
1 parent 8efbee5 commit c868f8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -52,8 +52,8 @@ install:
- "[ $TWISTED = latest ] || pip install Twisted==$TWISTED"
- "[ $SQLALCHEMY = latest ] || pip install sqlalchemy==$SQLALCHEMY"
- "[ $SQLALCHEMY_MIGRATE = latest ] || pip install sqlalchemy-migrate==$SQLALCHEMY_MIGRATE"
- pushd master; python setup.py develop; popd
- pushd slave; python setup.py develop; popd
- (cd master; python setup.py develop)
- (cd slave; python setup.py develop)
# mock is preinstalled on Travis
# txgithub requires Twisted >= 12.3.0, which doesn't work on Python 2.5.
- "[ $TRAVIS_PYTHON_VERSION = '2.5' ] || pip install txgithub"
Expand Down

0 comments on commit c868f8f

Please sign in to comment.