Skip to content

Commit 16d6a29

Browse files
committed
feat: use prefix output on all tests
To make it easier to see what task the output is coming from
1 parent bccefb6 commit 16d6a29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tasks/test.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@ echo ""
2828
echo "=============================================="
2929
echo "1/3: Running linting checks on SQLx Rust tests"
3030
echo "=============================================="
31-
mise run test:lint
31+
mise run --output prefix test:lint
3232

3333
# Run legacy SQL tests
3434
echo ""
3535
echo "=============================================="
3636
echo "2/3: Running Legacy SQL Tests"
3737
echo "=============================================="
38-
mise run test:legacy --postgres ${POSTGRES_VERSION}
38+
mise run --output prefix test:legacy --postgres ${POSTGRES_VERSION}
3939

4040
# Run SQLx Rust tests
4141
echo ""
4242
echo "=============================================="
4343
echo "3/3: Running SQLx Rust Tests"
4444
echo "=============================================="
45-
mise run test:sqlx
45+
mise run --output prefix test:sqlx
4646

4747
echo ""
4848
echo "=============================================="

0 commit comments

Comments
 (0)