contrib/vagrant/provision.sh
author Augie Fackler <raf@durin42.com>
Sat, 15 Sep 2018 00:19:09 -0400
changeset 39649 d6d094259d9c
parent 21874 8da01b6e7b49
permissions -rw-r--r--
keepalive: work around slight deficiency in vcr VCR's response type doesn't define the will_close attribute. Let's just have keepalive default to closing the socket if the will_close attribute is missing. Differential Revision: https://phab.mercurial-scm.org/D4599

#!/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