Ignore mempool testnet api tests for now as unit tests consistently fail (#5547)

This commit is contained in:
Chris Stewart 2024-04-26 07:29:26 -05:00 committed by GitHub
parent 1d42de0977
commit 4915350594
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@ class FeeRateProviderTest extends BitcoinSAsyncTest {
private val proxyParams = Option.empty[Socks5ProxyParams]
it must "get a valid fee rate from bitcoiner.live" ignore {
it must "get a valid fee rate from bitcoiner.live" in {
val provider = BitcoinerLiveFeeRateProvider(60, proxyParams)
testProvider(provider)
}
@ -47,18 +47,18 @@ class FeeRateProviderTest extends BitcoinSAsyncTest {
testProvider(provider)
}
it must "get a valid fee rate from mempool.space/testnet using the fastest fee target" in {
it must "get a valid fee rate from mempool.space/testnet using the fastest fee target" ignore {
val provider = MempoolSpaceProvider(FastestFeeTarget, TestNet3, proxyParams)
testProvider(provider)
}
it must "get a valid fee rate from mempool.space/testnet using a half hour fee target" in {
it must "get a valid fee rate from mempool.space/testnet using a half hour fee target" ignore {
val provider =
MempoolSpaceProvider(HalfHourFeeTarget, TestNet3, proxyParams)
testProvider(provider)
}
it must "get a valid fee rate from mempool.space/testnet using an hour fee target" in {
it must "get a valid fee rate from mempool.space/testnet using an hour fee target" ignore {
val provider = MempoolSpaceProvider(HourFeeTarget, TestNet3, proxyParams)
testProvider(provider)
}