Use long flag for `dotnet test -a` since it changes in .NET 7
This commit is contained in:
parent
17434f78cf
commit
86684b6893
|
@ -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 . \
|
||||
"$@"
|
||||
|
|
Loading…
Reference in New Issue