mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 01:43:50 +01:00
Make sure dotnet test show test progress
This commit is contained in:
parent
955ba91770
commit
e2b18cf9db
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user