restore skips for Travis
This commit is contained in:
parent
700f73e8e9
commit
ee57af8e99
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
import logging
|
||||
from unittest import skip
|
||||
from torba.testcase import IntegrationTestCase
|
||||
|
||||
|
||||
|
@ -6,6 +7,7 @@ class BlockchainReorganizationTests(IntegrationTestCase):
|
|||
|
||||
VERBOSITY = logging.WARN
|
||||
|
||||
@skip("too slow on Travis CI")
|
||||
async def test_reorg(self):
|
||||
self.assertEqual(self.ledger.headers.height, 200)
|
||||
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -17,5 +17,3 @@ commands =
|
|||
unit: coverage run -p --source={envsitepackagesdir}/torba -m unittest discover -t . client_tests.unit
|
||||
integration: orchstr8 download
|
||||
integration: coverage run -p --source={envsitepackagesdir}/torba -m unittest discover -t . client_tests.integration
|
||||
# Too slow on Travis
|
||||
# integration: coverage run -p --source={envsitepackagesdir}/torba -m twisted.trial --reactor=asyncio integration.test_blockchain_reorganization
|
||||
|
|
Loading…
Reference in a new issue