1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-24 06:03:45 +00:00
scrapy/.travis-workarounds.sh

13 lines
355 B
Bash
Raw Normal View History

2014-03-28 15:56:23 -03:00
#!/bin/bash
set -e
set -x
if [[ "${TOXENV}" == "pypy" ]]; then
sudo add-apt-repository -y ppa:pypy/ppa
sudo apt-get -qy update
sudo apt-get install -y pypy pypy-dev
# This is required because we need to get rid of the Travis installed PyPy
# or it'll take precedence over the PPA installed one.
sudo rm -rf /usr/local/pypy/bin
fi