From 83b28b564986ece3e258416230741803a0eeda0a Mon Sep 17 00:00:00 2001 From: Bostjan Meglic Date: Thu, 21 Jul 2022 10:39:58 +0000 Subject: [PATCH] [tests] Fix running unit tests inside docker environment The issue was introduced with the commit, which builds Open5GS from local sources instead of downloading them each time from Github. Fixes: d2cbcf711 ("[build] Use local sources to build applications (#1583)") --- docker/docker-compose.test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/docker-compose.test.yml b/docker/docker-compose.test.yml index 1d26b594c..dcaf634be 100644 --- a/docker/docker-compose.test.yml +++ b/docker/docker-compose.test.yml @@ -15,4 +15,4 @@ services: sysctls: - net.ipv6.conf.all.disable_ipv6=0 hostname: open5gs-test - command: /bin/bash -c "/root/setup.sh; cd open5gs/build && meson test -v" + command: /bin/bash -c "/root/setup.sh; cd /open5gs/build && meson test -v"