contrib/vagrant/provision.sh
author Gregory Szorc <gregory.szorc@gmail.com>
Mon, 21 Feb 2022 10:25:53 -0700
changeset 48978 426cf9d98a5d
parent 21874 8da01b6e7b49
permissions -rw-r--r--
httppeer: inline simplified _reqdata() The function can be reduced to an attribute lookup on Python 3. So inline it. Differential Revision: https://phab.mercurial-scm.org/D12290

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