From 48f4883215c544e061f4aa66c4f1f48afe87df41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ignas=20Vy=C5=A1niauskas?= Date: Tue, 3 Sep 2024 16:28:08 +0300 Subject: [PATCH] Run dune test with --no-buffer to avoid clipping alcotest descriptions --- .github/workflows/test.yml | 2 +- testing/run | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index acfb7c15..5c453441 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -65,4 +65,4 @@ jobs: extra_nix_config: | system-features = nixos-test benchmark big-parallel kvm - uses: DeterminateSystems/magic-nix-cache-action@v4 - - run: cd controller && nix-shell --run 'dune test -f' + - run: cd controller && nix-shell --run 'dune test -f --no-buffer' diff --git a/testing/run b/testing/run index 0fd5c767..4955aedb 100755 --- a/testing/run +++ b/testing/run @@ -17,5 +17,5 @@ popd # Ocaml tests pushd "$(dirname "$(realpath "$0")")/../controller" -nix-shell --run 'dune test -f' +nix-shell --run 'dune test -f --no-buffer' popd