From ca6fd5b7b95006751897db3c814711c3f766a704 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Wed, 11 May 2022 16:32:56 -0300 Subject: [PATCH 1/3] fix scribe pinning --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 351f1194e..484104d0e 100644 --- a/setup.py +++ b/setup.py @@ -69,7 +69,7 @@ setup( 'jsonschema==4.4.0', ], 'scribe': [ - 'scribe @ git+https://github.com/lbryio/scribe.git#311db529a03de7fce43ed8579f51ac23a1a884ea' + 'scribe @ git+https://github.com/lbryio/scribe.git@311db529a03de7fce43ed8579f51ac23a1a884ea' ] }, classifiers=[ From 38195528619d70ca1026d78d5c64c587425855b8 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Wed, 11 May 2022 19:44:38 -0300 Subject: [PATCH 2/3] try usedevelop=true --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index fe35b583a..2a2642c56 100644 --- a/tox.ini +++ b/tox.ini @@ -1,4 +1,5 @@ [testenv] +usedevelop = true deps = coverage extras = From fd73412f12cc5c992c3f161e1fce721d856b4cf6 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Wed, 11 May 2022 20:13:53 -0300 Subject: [PATCH 3/3] test_exchange_rate_manager: bump value --- tests/integration/other/test_exchange_rate_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/other/test_exchange_rate_manager.py b/tests/integration/other/test_exchange_rate_manager.py index 452fcf20a..798286b38 100644 --- a/tests/integration/other/test_exchange_rate_manager.py +++ b/tests/integration/other/test_exchange_rate_manager.py @@ -24,7 +24,7 @@ class TestExchangeRateManager(AsyncioTestCase): self.assertLessEqual(len(failures), 1, f"feed failures: {failures}. Please check exchange rate feeds!") lbc = manager.convert_currency('USD', 'LBC', Decimal('1.0')) self.assertGreaterEqual(lbc, 2.0) - self.assertLessEqual(lbc, 60.0) + self.assertLessEqual(lbc, 80.0) lbc = manager.convert_currency('BTC', 'LBC', Decimal('0.01')) self.assertGreaterEqual(lbc, 1_000) self.assertLessEqual(lbc, 20_000)