mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-03 09:29:10 +01:00
Make sure dotnet test show test progress
This commit is contained in:
parent
955ba91770
commit
e2b18cf9db
2 changed files with 2 additions and 3 deletions
|
@ -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…
Add table
Reference in a new issue