Skip to content

Commit

Permalink
Fix test scripts to test on .NET 7 runtime (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz authored Nov 8, 2022
1 parent f426fd0 commit d5edf08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions test.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ goto :EOF
setlocal
call build ^
&& call :clean ^
&& call :test net7.0 Debug ^
&& call :test net7.0 Release ^
&& call :test net6.0 Debug ^
&& call :test net6.0 Release ^
&& call :test netcoreapp3.1 Debug ^
Expand Down
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if [[ -z "$1" ]]; then
else
configs="$1"
fi
for f in netcoreapp3.1 net6.0; do
for f in netcoreapp3.1 net6.0 net7.0; do
for c in $configs; do
dotnet test --no-build -c $c -f $f --settings MoreLinq.Test/coverlet.runsettings MoreLinq.Test
TEST_RESULTS_DIR="$(ls -dc MoreLinq.Test/TestResults/* | head -1)"
Expand Down

0 comments on commit d5edf08

Please sign in to comment.