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:59:42 +02:00
parent ae4a4761c5
commit 423f0878b2
10 changed files with 92 additions and 131 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 pyvarint.__init__ import __version__
assert __version__ == "unknown"