Migrate to pyproject config
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Luke Murphy
2020-07-07 15:31:26 +02:00
parent 53ce07f1c4
commit db5f71d240
11 changed files with 95 additions and 152 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 hypercore_crypto.__init__ import __version__
assert __version__ == "unknown"