Commit 86b3a809 authored by Davis King's avatar Davis King
Browse files

Make github actions use -q so the test logs are not so spammy

parent 28328af5
...@@ -35,9 +35,9 @@ jobs: ...@@ -35,9 +35,9 @@ jobs:
working-directory: ${{ github.workspace }}/dlib/test/${{ env.build_dir }} working-directory: ${{ github.workspace }}/dlib/test/${{ env.build_dir }}
run: | run: |
if [ "$RUNNER_OS" == "Windows" ]; then if [ "$RUNNER_OS" == "Windows" ]; then
./${{ env.config }}/dtest.exe --runall ./${{ env.config }}/dtest.exe --runall -q
elif [ "$RUNNER_OS" == "macOS" ]; then elif [ "$RUNNER_OS" == "macOS" ]; then
./dtest --runall --no_test_timer ./dtest --runall --no_test_timer -q
else else
./dtest --runall ./dtest --runall -q
fi; fi;
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment