From 7f1de72e08a06a9af6ac6dabc0aad5f5be985f26 Mon Sep 17 00:00:00 2001 From: Kevin Morris Date: Tue, 18 Jan 2022 05:22:00 -0800 Subject: [PATCH] fix(docker): remove logging setup in run-tests.sh This was left in when we removed logging.prod.conf in a previous patch. `test-mysql-entrypoint.sh` takes care of test logging for us now, so this section is unnecessary. Closes #261 Signed-off-by: Kevin Morris --- docker/scripts/run-tests.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/docker/scripts/run-tests.sh b/docker/scripts/run-tests.sh index 07e84822..a726c957 100755 --- a/docker/scripts/run-tests.sh +++ b/docker/scripts/run-tests.sh @@ -6,10 +6,7 @@ dir=$(dirname $0) make -C test clean # Run sharness tests. -cp -vf logging.conf logging.conf.bak -cp -vf logging.prod.conf logging.conf bash $dir/run-sharness.sh -cp -vf logging.conf.bak logging.conf # Run Python tests with MariaDB database. # Pass --silence to avoid reporting coverage. We will do that below.