diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-02-21 07:26:45 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-02-21 07:26:45 +0100 |
commit | bfcdf2bef08f17b4726b67f06c84be3bfe2c39b8 (patch) | |
tree | d14fd065ee0a5b052bb001c7205f238afb1f6eff | |
parent | e2feb62c17acd1dddb6cd125d8b90933c32f89e1 (diff) | |
parent | c00567d3025016550d55a7abaf94cbb82a5c44fb (diff) | |
download | gitpython-bfcdf2bef08f17b4726b67f06c84be3bfe2c39b8.tar.gz |
Merge pull request #261 from yarikoptic/bf/no-master-checkout
BF: do not checkout master -- that ruins testing of PRs
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 069527eb..b53228ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,11 +15,12 @@ install: - pip install coveralls flake8 sphinx # generate some reflog as git-python tests need it (in master) + - git tag __testing_point__ - git checkout master - git reset --hard HEAD~1 - git reset --hard HEAD~1 - git reset --hard HEAD~1 - - git reset --hard origin/master + - git reset --hard __testing_point__ # as commits are performed with the default user, it needs to be set for travis too - git config --global user.email "travis@ci.com" |