Migrate to pyproject config
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Luke Murphy
2020-07-07 15:42:41 +02:00
parent 9776cea9f0
commit a9ebea0889
11 changed files with 387 additions and 153 deletions

View File

@ -1,10 +0,0 @@
"""Version test module."""
def test_version_fails_gracefully(mocker):
target = "pkg_resources.get_distribution"
mocker.patch(target, side_effect=Exception())
from merkle_tree_stream.__init__ import __version__
assert __version__ == "unknown"