Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tests with Mercurial/Hg #93

Merged
merged 1 commit into from
Feb 27, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,23 @@ go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x
- master

before_script:
- git version
- svn --version
# Need a more up to date verion of mercurial to handle TLS with
# bitbucket properly. Also need python greater than 2.7.9.
- pyenv global 2.7.14
- openssl ciphers -v | awk '{print $2}' | sort | uniq
- sudo pip install mercurial --upgrade
# The below is a complete hack to have hg use the pyenv version of python
- sudo sed -i '1s/.*/\#\!\/usr\/bin\/env\ python/' /usr/local/bin/hg
- hg --version


# Setting sudo access to false will let Travis CI use containers rather than
# VMs to run the tests. For more details see:
Expand Down