Travis-CI workaround for multiprocessing.Queue OSError
See https://github.com/travis-ci/travis-cookbooks/issues/155 for background
This commit is contained in:
		@@ -11,7 +11,10 @@ before_install:
 | 
				
			|||||||
  - cd -
 | 
					  - cd -
 | 
				
			||||||
 | 
					
 | 
				
			||||||
install:
 | 
					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:
 | 
					script:
 | 
				
			||||||
  - python -m test.test_unit
 | 
					  - python -m test.test_unit
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user