From 7e754436f1a5d48c84fcc5710f20273b9506f7fd Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 7 Jan 2021 15:21:03 +0100 Subject: [PATCH] tests: don't read /etc/abuild.conf Host's /etc/abuild.conf may enable USE_CCACHE which will pull in ccaches as makedepends which breaks the tests. fixes https://gitlab.alpinelinux.org/alpine/abuild/-/issues/10017 --- tests/abuild.bats | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/abuild.bats b/tests/abuild.bats index d982a89..37a7b41 100644 --- a/tests/abuild.bats +++ b/tests/abuild.bats @@ -1,6 +1,7 @@ setup() { export ABUILD="$PWD/../abuild" export ABUILD_SHAREDIR="$PWD/.." + export ABUILD_CONF=/dev/null export REPODEST="$BATS_TMPDIR"/packages }