restore skips for Travis

This commit is contained in:
Victor Shyba 2018-11-07 17:20:00 -03:00 committed by Lex Berezhny
parent 700f73e8e9
commit ee57af8e99
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,5 @@
import logging import logging
from unittest import skip
from torba.testcase import IntegrationTestCase from torba.testcase import IntegrationTestCase
@ -6,6 +7,7 @@ class BlockchainReorganizationTests(IntegrationTestCase):
VERBOSITY = logging.WARN VERBOSITY = logging.WARN
@skip("too slow on Travis CI")
async def test_reorg(self): async def test_reorg(self):
self.assertEqual(self.ledger.headers.height, 200) self.assertEqual(self.ledger.headers.height, 200)

View file

@ -17,5 +17,3 @@ commands =
unit: coverage run -p --source={envsitepackagesdir}/torba -m unittest discover -t . client_tests.unit unit: coverage run -p --source={envsitepackagesdir}/torba -m unittest discover -t . client_tests.unit
integration: orchstr8 download integration: orchstr8 download
integration: coverage run -p --source={envsitepackagesdir}/torba -m unittest discover -t . client_tests.integration 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