tienfuc / gdcmdtools

Google drive command-line tools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

travis.yml builds the master branch on pull requests instead of the branch under test

n2ygk opened this issue · comments

The travis.yml has:

pip install -r requirements.txt && pip install git+https://github.com/timchen86/gdcmdtools.git@master

which overwrites the just checked-out pull request branch with the master branch.

This should be changed (I believe) to:

pip install -r requirements.txt

This appears to do the right thing, but the later tests in test.py are looking for credentials that are not available to travis.

n2ygk,
Thanks, I have fixed this issue on 7310ecc