osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40949?usp=email )
Change subject: testenv: set default distro to debian:trixie ......................................................................
testenv: set default distro to debian:trixie
Related: OS#6826 Change-Id: Ib9c5dafaa7b17e435f61fbedfd92393c0a767f34 --- M _testenv/testenv/__init__.py 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/49/40949/1
diff --git a/_testenv/testenv/__init__.py b/_testenv/testenv/__init__.py index f23f1f6..7a453a5 100644 --- a/_testenv/testenv/__init__.py +++ b/_testenv/testenv/__init__.py @@ -15,7 +15,7 @@ src_dir = os.environ.get("TESTENV_SRC_DIR", os.path.realpath(f"{__file__}/../../../..")) data_dir = os.path.join(os.path.realpath(f"{__file__}/../.."), "data") custom_kernel_path = os.path.join(os.path.realpath(f"{__file__}/../../.."), ".linux") -distro_default = "debian:bookworm" +distro_default = "debian:trixie" cache_dir_default = os.path.join(os.path.expanduser("~/.cache"), "osmo-ttcn3-testenv") ccache_dir_default = os.path.join(cache_dir_default, "ccache")