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 <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2022-01-18 05:22:00 -08:00
parent 211ca5e49c
commit 7f1de72e08
No known key found for this signature in database
GPG key ID: F7E46DED420788F3

View file

@ -6,10 +6,7 @@ dir=$(dirname $0)
make -C test clean make -C test clean
# Run sharness tests. # Run sharness tests.
cp -vf logging.conf logging.conf.bak
cp -vf logging.prod.conf logging.conf
bash $dir/run-sharness.sh bash $dir/run-sharness.sh
cp -vf logging.conf.bak logging.conf
# Run Python tests with MariaDB database. # Run Python tests with MariaDB database.
# Pass --silence to avoid reporting coverage. We will do that below. # Pass --silence to avoid reporting coverage. We will do that below.