Skip to content
Snippets Groups Projects
Commit 777a313c authored by Holger's avatar Holger
Browse files

Try to fix travis

parent 1501554c
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,9 @@ class Vote(BlockchainObject): ...@@ -31,7 +31,9 @@ class Vote(BlockchainObject):
.. code-block:: python .. code-block:: python
>>> from beem.vote import Vote >>> from beem.vote import Vote
>>> v = Vote("@gtg/steem-pressure-4-need-for-speed|gandalf") >>> from beem import Steem
>>> stm = Steem("https://steemd.minnowsupportproject.org")
>>> v = Vote("@gtg/steem-pressure-4-need-for-speed|gandalf", steem_instance=stm)
""" """
type_id = 11 type_id = 11
......
...@@ -23,6 +23,7 @@ pytest ...@@ -23,6 +23,7 @@ pytest
pytest-mock pytest-mock
pytest-cov pytest-cov
coverage coverage
mock
parameterized parameterized
tox tox
codacy-coverage codacy-coverage
......
...@@ -21,10 +21,7 @@ deps = ...@@ -21,10 +21,7 @@ deps =
secp256k1 secp256k1
scrypt scrypt
commands = commands =
coverage run --parallel-mode -m pytest tests/beemapi tests/beembase tests/beemgraphene {posargs} pytest tests/beemapi tests/beembase tests/beemgraphene {posargs}
coverage combine
coverage report -m
coverage xml
[testenv:py36] [testenv:py36]
deps = deps =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment