make libtorrent optional and skip test which depends on it
This commit is contained in:
parent
21c71bfac1
commit
a08d84c1df
1 changed files with 3 additions and 1 deletions
|
@ -1,10 +1,11 @@
|
||||||
|
from unittest import skipIf
|
||||||
import asyncio
|
import asyncio
|
||||||
import os
|
import os
|
||||||
from binascii import hexlify
|
from binascii import hexlify
|
||||||
|
|
||||||
from lbry.schema import Claim
|
from lbry.schema import Claim
|
||||||
from lbry.testcase import CommandTestCase
|
from lbry.testcase import CommandTestCase
|
||||||
from lbry.torrent.session import TorrentSession
|
from lbry.extras.daemon.components import TorrentSession
|
||||||
from lbry.wallet import Transaction
|
from lbry.wallet import Transaction
|
||||||
|
|
||||||
|
|
||||||
|
@ -40,6 +41,7 @@ class FileCommands(CommandTestCase):
|
||||||
self.client_session.wait_start = False # fixme: this is super slow on tests
|
self.client_session.wait_start = False # fixme: this is super slow on tests
|
||||||
return tx, btih
|
return tx, btih
|
||||||
|
|
||||||
|
@skipIf(TorrentSession is None, "libtorrent not installed")
|
||||||
async def test_download_torrent(self):
|
async def test_download_torrent(self):
|
||||||
tx, btih = await self.initialize_torrent()
|
tx, btih = await self.initialize_torrent()
|
||||||
self.assertNotIn('error', await self.out(self.daemon.jsonrpc_get('torrent')))
|
self.assertNotIn('error', await self.out(self.daemon.jsonrpc_get('torrent')))
|
||||||
|
|
Loading…
Reference in a new issue