We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 499c163 commit e91aa4fCopy full SHA for e91aa4f
1 file changed
.github/workflows/tests.yml
@@ -426,7 +426,22 @@ jobs:
426
if: ${{ matrix.job.postgres-version }}
427
timeout-minutes: 2
428
run: until pg_isready -h localhost; do sleep 1; done
429
- - run: poetry run trial tests
+ - run: |
430
+ (
431
+ while true; do
432
+ date
433
+ df -h
434
+ sleep 10
435
+ done
436
+ ) &
437
+ MONITOR_PID=$!
438
+
439
+ poetry run trial tests
440
+ STATUS=$?
441
442
+ kill $MONITOR_PID
443
+ exit $STATUS
444
445
env:
446
SYNAPSE_POSTGRES: ${{ matrix.job.database == 'postgres' || '' }}
447
SYNAPSE_POSTGRES_HOST: /var/run/postgresql
0 commit comments