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 16:05:55 +02:00
parent eb03ff96ad
commit 190d524734
11 changed files with 79 additions and 144 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 simple_message_channels.__init__ import __version__
assert __version__ == 'unknown'