Skip to content
This repository has been archived by the owner on Sep 14, 2021. It is now read-only.

Commit

Permalink
Travis CI: use quotes around pip install arguments.
Browse files Browse the repository at this point in the history
So package version specifiers like `pip>=8.1.2` won't be mistaken as
redirections from the shell.
  • Loading branch information
riccardomurri committed Jan 16, 2017
1 parent 3ed7192 commit d8fad13
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
Expand Up @@ -3,8 +3,8 @@ python:
- "2.6"
- "2.7"
install:
- "pip install --upgrade setuptools pip>=8.1.2"
- "pip install pytest>=2.10 pytest-cov mock tox"
- "pip install --upgrade 'setuptools' 'pip>=8.1.2'"
- "pip install 'pytest>=2.10' 'pytest-cov' 'mock' 'tox'"
- "pip install ."
script: py.test --cov=elasticluster
sudo: false

0 comments on commit d8fad13

Please sign in to comment.