diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e34194b..1626333 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -112,4 +112,5 @@ jobs: - name: Run Tests run: | + ./build/test/Debug/test.exe --help python3 run_tests.py diff --git a/run_tests.py b/run_tests.py index 155573a..31b76a0 100644 --- a/run_tests.py +++ b/run_tests.py @@ -56,8 +56,12 @@ def run(self): str(self.shard_count), "--shard-index", str(self.shard_index), + "--verbosity", + "high", ] + print(f"Running {' '.join(cmd)}") + result = subprocess.run( cmd, capture_output=True,