contrib/vagrant/provision.sh
author Yuya Nishihara <yuya@tcha.org>
Thu, 10 May 2018 21:00:58 +0900
changeset 37985 af83a0ed0afb
parent 21874 8da01b6e7b49
permissions -rw-r--r--
stringutil: make pprint() forward uninteresting object to b'%r' We appear to start using pprint() as a replacement for repr(), so it's probably safer to support any Python objects instead of complaining about that.

#!/bin/sh
# This scripts is used to install dependencies for
# testing Mercurial. Mainly used by Vagrant (see
# Vagrantfile for details).

export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y -q python-dev unzip
# run-tests.sh is added by Vagrantfile
chmod +x run-tests.sh