Skip to content

Commit

Permalink
reduce test output verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
lahma committed Mar 24, 2022
1 parent fb8fe03 commit 92ffea1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
run: dotnet tool restore && dotnet test262 generate

- name: Test
run: dotnet test --configuration Release

run: dotnet test --configuration Release --logger:"console;verbosity=quiet"
- name: Pack with dotnet
run: dotnet pack --output artifacts --configuration Release -p:PackageVersion=$GITHUB_RUN_ID

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: dotnet tool restore && dotnet test262 generate

- name: Test
run: dotnet test --configuration Release
run: dotnet test --configuration Release --logger:"console;verbosity=quiet"

linux:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: dotnet tool restore && dotnet test262 generate

- name: Test
run: dotnet test --configuration Release
run: dotnet test --configuration Release --logger:"console;verbosity=quiet"

- name: Pack with dotnet
run: |
Expand Down

0 comments on commit 92ffea1

Please sign in to comment.