Fix tox2travis.

This commit is contained in:
Ivan Malison 2014-10-02 15:48:56 -07:00
parent 73773c293a
commit 69bd5fe216

View File

@ -11,7 +11,7 @@ class TravisFromTox(object):
def build_travis_dict(self):
return {
'language': 'python',
'install': ['pip install -e hg+https://ivanmalison@bitbucket.org/hpk42/tox#egg=tox'],
'install': ['pip install "tox>=1.8.0"'],
'script': 'tox',
'env': self._get_environment_variables()
}