diff options
author | David Arthur <mumrah@gmail.com> | 2013-10-03 12:41:25 -0400 |
---|---|---|
committer | David Arthur <mumrah@gmail.com> | 2013-10-03 12:41:25 -0400 |
commit | e898500ac6ce1ee1ef7d44b90b89c28b8a2c3c5d (patch) | |
tree | 1f0980e5f502a5e2dc1565fe21cd357a069091bf | |
parent | 9c868d47cdd51a978fd1847b79f90b1ac8d7688f (diff) | |
download | kafka-python-e898500ac6ce1ee1ef7d44b90b89c28b8a2c3c5d.tar.gz |
Travis-CI workaround for multiprocessing.Queue OSError
See https://github.com/travis-ci/travis-cookbooks/issues/155 for background
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 0b317ca..77348c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,10 @@ before_install: - cd - install: - pip install . + - pip install . + # Deal with issue on Travis builders re: multiprocessing.Queue :( + # See https://github.com/travis-ci/travis-cookbooks/issues/155 + - sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm script: - python -m test.test_unit |