Make sure dotnet test show test progress

This commit is contained in:
nicolas.dorier 2021-12-27 14:26:03 +09:00
parent 955ba91770
commit e2b18cf9db
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE
2 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,6 @@ namespace BTCPayServer.Services.Rates
internal class InternalHttpWebRequest : IHttpWebRequest
{
internal readonly HttpRequestMessage Request;
internal HttpResponseMessage? Response;
private string? contentType;
public InternalHttpWebRequest(string method, Uri fullUri)
@ -132,7 +131,7 @@ namespace BTCPayServer.Services.Rates
await api.ProcessRequestAsync(request, payload);
// send the request
var response = request.Response;
HttpResponseMessage response = null;
string responseString;
using var cancel = new CancellationTokenSource(request.Timeout);
try

View File

@ -6,4 +6,4 @@ if [ ! -z "$TEST_FILTERS" ]; then
FILTERS="--filter $TEST_FILTERS"
fi
dotnet test -c ${CONFIGURATION_NAME} $FILTERS --no-build -v n < /dev/null
dotnet test -c ${CONFIGURATION_NAME} $FILTERS --no-build -v n --logger "console;verbosity=normal" < /dev/null