From 27037926446c48da6ad531fbbb0dd632cad70631 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Fri, 21 Apr 2023 15:40:47 -0400 Subject: [PATCH] Very simple table is parsing now. --- scripts/run_integration_test.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_integration_test.bash b/scripts/run_integration_test.bash index f1feb0f..9185c65 100755 --- a/scripts/run_integration_test.bash +++ b/scripts/run_integration_test.bash @@ -21,5 +21,5 @@ function get_test_names { } get_test_names "$@" | while read test; do - (cd "$DIR/../" && cargo test --no-fail-fast --test test_loader "$test") + (cd "$DIR/../" && cargo test --no-fail-fast --test test_loader "$test" -- --show-output) done