1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
From 78dd2f706f77c8685c47cda2e2401e0dfc3ab17a Mon Sep 17 00:00:00 2001
From: Graham Pentheny <graham.pentheny@gmail.com>
Date: Sun, 23 Jul 2023 16:49:03 -0400
Subject: [PATCH 06/36] Enable verbose catch2 output when running tests in CI
---
.github/workflows/Tests.yaml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/Tests.yaml b/.github/workflows/Tests.yaml
index 66e64f1..b0aef99 100644
--- a/.github/workflows/Tests.yaml
+++ b/.github/workflows/Tests.yaml
@@ -38,7 +38,7 @@ jobs:
- name: Run unit tests
working-directory: RecastDemo/Bin
- run: ./Tests
+ run: ./Tests --verbosity high --success
linux-tests:
runs-on: ubuntu-latest
@@ -68,7 +68,7 @@ jobs:
- name: Run Tests
working-directory: RecastDemo/Bin
- run: ./Tests
+ run: ./Tests --verbosity high --success
windows-tests:
runs-on: windows-2022
@@ -106,4 +106,4 @@ jobs:
- name: Run Tests
working-directory: RecastDemo/Bin/
- run: ./Tests.exe
\ No newline at end of file
+ run: ./Tests.exe --verbosity high --success
\ No newline at end of file
--
2.43.0
|