Skip to content
Snippets Groups Projects
Commit b40b6f48 authored by ulif's avatar ulif
Browse files

Try to use new Travis CI containers.

Travis CI now comes with container infrastructure as shown in
http://docs.travis-ci.com/user/migrating-from-legacy/. Let's give it a
try.
parent 1aacd0ad
No related branches found
No related tags found
No related merge requests found
language: python
# use new container infrastructure
# see: http://docs.travis-ci.com/user/migrating-from-legacy/
sudo: false
python:
- "2.7"
- "3.3"
before_install:
# Workaround for a permissions issue with Travis virtual machine images
# that breaks Python's multiprocessing:
# https://github.com/travis-ci/travis-cookbooks/issues/155
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
# nothing to do, currently
# command to install dependencies
install:
- python setup.py dev
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment