Use long flag for `dotnet test -a` since it changes in .NET 7

This commit is contained in:
James Groom 2024-02-13 06:28:15 +10:00 committed by GitHub
parent 17434f78cf
commit 86684b6893
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -5,4 +5,7 @@ if [ ! -e "BizHawk.sln" ]; then
fi
config="$1"
shift
Dist/.InvokeCLIOnMainSln.sh "test" "$config" -a . -l "junit;LogFilePath=$PWD/test_output/{assembly}.coverage.xml;MethodFormat=Class;FailureBodyFormat=Verbose" "$@"
Dist/.InvokeCLIOnMainSln.sh "test" "$config" \
-l "junit;LogFilePath=$PWD/test_output/{assembly}.coverage.xml;MethodFormat=Class;FailureBodyFormat=Verbose" \
--test-adapter-path . \
"$@"