From: Michael Prokop Date: Mon, 17 Oct 2011 20:41:47 +0000 (+0100) Subject: adt-run: make sure apt-listbugs + apt-listchanges do not show up X-Git-Tag: debian/2.1.0~13 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=406a961e5781f9a5f53b6fd7bc63793da5225404;p=autopkgtest.git adt-run: make sure apt-listbugs + apt-listchanges do not show up Iff apt-listbugs and/or apt-listchanges are installed and enabled then the frontends may pop up and pause the test runs. By setting the according environment variables we make sure they do not show up. Signed-off-by: Michael Prokop --- diff --git a/runner/adt-run b/runner/adt-run index 1de5934..9110236 100755 --- a/runner/adt-run +++ b/runner/adt-run @@ -55,6 +55,8 @@ timeouts = { 'short':100, 'install':3000, 'test':10000, 'build':100000 } binaries = None # Binaries (.debs we have registered) build_essential = ["build-essential"] paths = [] +os.putenv("APT_LISTBUGS_FRONTEND", "none") # do not consider using apt-listbugs +os.putenv("APT_LISTCHANGES_FRONTEND", "none") # do not consider using apt-listchanges #---------- output handling #