diff --git a/.github/jobs/configure-checks/all.bats b/.github/jobs/configure-checks/all.bats index f2445ddb8d..6cec569bb1 100755 --- a/.github/jobs/configure-checks/all.bats +++ b/.github/jobs/configure-checks/all.bats @@ -1,4 +1,4 @@ -#!/usr/bin/env bats +#!/usr/bin/env bats --trace load 'assert' @@ -46,13 +46,13 @@ run_configure () { repo-install () { args=$(translate $@) - ${cmd} install $args -y >/dev/null + ${cmd} install $args -y } repo-remove () { args=$(translate $@) ${cmd} remove $args -y #>/dev/null if [ "$distro_id" != "ID=fedora" ]; then - apt-get autoremove -y 2>/dev/null + apt-get autoremove -y fi } diff --git a/.github/jobs/configure-checks/setup_configure_image.sh b/.github/jobs/configure-checks/setup_configure_image.sh index 4e8e859818..fb251ea861 100755 --- a/.github/jobs/configure-checks/setup_configure_image.sh +++ b/.github/jobs/configure-checks/setup_configure_image.sh @@ -27,4 +27,4 @@ make configure cp submit/assert.bash .github/jobs/configure-checks/ # Run the configure tests for this usecase -test_path="/__w/domjudge/domjudge" bats .github/jobs/configure-checks/all.bats +test_path="/__w/domjudge/domjudge" bats --trace .github/jobs/configure-checks/all.bats