From d0e474080a9e167bae50180264b69ad4e02f7877 Mon Sep 17 00:00:00 2001 From: Justin Clift Date: Thu, 3 Oct 2024 19:05:36 +1000 Subject: [PATCH] df output --- test.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/test.sh b/test.sh index 8a416ad..d1d4850 100755 --- a/test.sh +++ b/test.sh @@ -39,7 +39,7 @@ test_run() { ### FIXME: echo "ls #1" - ls -la postgres-data + sudo ls -la postgres-data ps -ef f # Create the PostgreSQL database using a specific version of PostgreSQL @@ -65,8 +65,9 @@ test_run() { ### FIXME: echo "ls #2" - ls -la postgres-data + sudo ls -la postgres-data ps -ef f + df -h . ## ## Tests for one shot mode @@ -78,8 +79,9 @@ test_run() { ### FIXME: echo "ls #3" - ls -la postgres-data + sudo ls -la postgres-data ps -ef f + df -h . # Run the PostgreSQL container in one shot mode TARGET_TAG="${TARGET}-${FLAVOR}" docker compose -f docker-compose-pgauto.yml run --rm -e PGAUTO_ONESHOT=yes postgres @@ -98,8 +100,9 @@ test_run() { ### FIXME: echo "ls #4" - ls -la postgres-data + sudo ls -la postgres-data ps -ef f + df -h . # If running on CI, delete the Postgres Docker image to avoid space problems if [ -n "$CI" ]; then