Skip to content

Commit

Permalink
gh #68: Make --platform/--interpreter multi-options pass python2 and …
Browse files Browse the repository at this point in the history
…pypy tests
  • Loading branch information
mzdaniel committed May 22, 2016
1 parent b8a10ba commit bfd467d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# which should provide faster startup times and beefier
# "machines".
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
sudo: required

language: python
python: 2.7
Expand All @@ -21,5 +21,7 @@ env:
- TOXENV=isort-check
install:
- pip install tox
- sudo apt-get install python3-setuptools
- sudo python3 -m easy_install wheel
script:
- tox -v
2 changes: 1 addition & 1 deletion pex/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def bootstrap_script(self):
if not path:
assert not self._strict # This should be caught by validation
continue
bootstrap_modules.append(self.SETUP_BOOTSTRAP_MODULE % {'path': path, 'module': module})
bootstrap_modules.append(self.SETUP_BOOTSTRAP_MODULE % {'path': str(path), 'module': module})
return '\n'.join(
[self.SETUP_BOOTSTRAP_HEADER] + bootstrap_modules + [self.SETUP_BOOTSTRAP_FOOTER])

Expand Down

0 comments on commit bfd467d

Please sign in to comment.